aboutsummaryrefslogtreecommitdiff
path: root/vm
diff options
context:
space:
mode:
Diffstat (limited to 'vm')
-rw-r--r--vm/Cargo.toml6
-rw-r--r--vm/src/main.rs3
2 files changed, 9 insertions, 0 deletions
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 @@
1[package]
2name = "crispvm"
3version = "0.1.0"
4edition = "2024"
5
6[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 @@
1fn main() {
2 println!("Hello, world!");
3}