This commit is contained in:
2026-02-09 15:13:50 +01:00
commit fb87c0639c
22 changed files with 530 additions and 0 deletions

1
platforms/web/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
/target

6
platforms/web/Cargo.toml Normal file
View File

@@ -0,0 +1,6 @@
[package]
name = "web"
version = "0.1.0"
edition = "2024"
[dependencies]

View File

@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}