diff options
Diffstat (limited to 'compiler')
| -rw-r--r-- | compiler/Cargo.toml | 6 | ||||
| -rw-r--r-- | compiler/src/main.rs | 3 |
2 files changed, 9 insertions, 0 deletions
diff --git a/compiler/Cargo.toml b/compiler/Cargo.toml new file mode 100644 index 0000000..d8664c2 --- /dev/null +++ b/compiler/Cargo.toml | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | [package] | ||
| 2 | name = "crispc" | ||
| 3 | version = "0.0.1" | ||
| 4 | edition = "2024" | ||
| 5 | |||
| 6 | [dependencies] | ||
diff --git a/compiler/src/main.rs b/compiler/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/compiler/src/main.rs | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | fn main() { | ||
| 2 | println!("Hello, world!"); | ||
| 3 | } | ||
