diff options
| author | Tolmachev Igor <me@igorek.dev> | 2026-05-06 17:38:28 +0300 |
|---|---|---|
| committer | Tolmachev Igor <me@igorek.dev> | 2026-05-06 17:51:32 +0300 |
| commit | 6b5bfd2d33d9aba94eed83ad8b119baa4732f5af (patch) | |
| tree | d09dc7929e1db6578153311b0d94fb83af018e68 /compiler | |
| download | crisp-main.tar.gz crisp-main.zip | |
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 | } | ||
