aboutsummaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorTolmachev Igor <me@igorek.dev>2026-05-06 17:38:28 +0300
committerTolmachev Igor <me@igorek.dev>2026-05-06 17:51:32 +0300
commit6b5bfd2d33d9aba94eed83ad8b119baa4732f5af (patch)
treed09dc7929e1db6578153311b0d94fb83af018e68 /compiler
downloadcrisp-main.tar.gz
crisp-main.zip
Initial commitHEADmain
Diffstat (limited to 'compiler')
-rw-r--r--compiler/Cargo.toml6
-rw-r--r--compiler/src/main.rs3
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]
2name = "crispc"
3version = "0.0.1"
4edition = "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 @@
1fn main() {
2 println!("Hello, world!");
3}