From 6b5bfd2d33d9aba94eed83ad8b119baa4732f5af Mon Sep 17 00:00:00 2001 From: Tolmachev Igor Date: Wed, 6 May 2026 17:38:28 +0300 Subject: Initial commit --- vm/Cargo.toml | 6 ++++++ vm/src/main.rs | 3 +++ 2 files changed, 9 insertions(+) create mode 100644 vm/Cargo.toml create mode 100644 vm/src/main.rs (limited to 'vm') diff --git a/vm/Cargo.toml b/vm/Cargo.toml new file mode 100644 index 0000000..887f58e --- /dev/null +++ b/vm/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "crispvm" +version = "0.1.0" +edition = "2024" + +[dependencies] diff --git a/vm/src/main.rs b/vm/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/vm/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} -- cgit v1.3