about summary refs log tree commit diff
path: root/tvix/src
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2021-12-28T13·29+0100
committerProfpatsch <mail@profpatsch.de>2022-01-06T15·38+0000
commit7c92b07efd6d3a183c2b6970102647fea08fc49a (patch)
tree0b15804d2022e57e9e179be7e6d98817f6520437 /tvix/src
parent9f0671edc9e26b145d0f694e07c44718cbb5b389 (diff)
feat(tvix): set up cargo rust project r/3521
First steps for baba

Change-Id: Id6a68c5630cb85f280f4dcc7b2acf10c02454fd6
Reviewed-on: https://cl.tvl.fyi/c/depot/+/4732
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'tvix/src')
-rw-r--r--tvix/src/bin/nix-store.rs3
-rw-r--r--tvix/src/main.rs3
2 files changed, 6 insertions, 0 deletions
diff --git a/tvix/src/bin/nix-store.rs b/tvix/src/bin/nix-store.rs
new file mode 100644
index 0000000000..7bf5442cb9
--- /dev/null
+++ b/tvix/src/bin/nix-store.rs
@@ -0,0 +1,3 @@
+fn main () {
+  println!("hello, nix");
+}
diff --git a/tvix/src/main.rs b/tvix/src/main.rs
new file mode 100644
index 0000000000..40086e6f27
--- /dev/null
+++ b/tvix/src/main.rs
@@ -0,0 +1,3 @@
+fn main() {
+    println!("Hello, tvix!");
+}