From 7e59ce132303837b05aaa5f173ea2050ac0203f6 Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Thu, 14 Jul 2022 01:45:28 -0400 Subject: Add basic Rust support Support for packages and third-party imports will need to come later once I figure out how to lookup rust packages by their import statements. Until then, this works to compile "hello world". --- Biz/Bild/Example.rs | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Biz/Bild/Example.rs (limited to 'Biz/Bild/Example.rs') diff --git a/Biz/Bild/Example.rs b/Biz/Bild/Example.rs new file mode 100644 index 0000000..ba98dda --- /dev/null +++ b/Biz/Bild/Example.rs @@ -0,0 +1,4 @@ +// : out helloworld +fn main() { + println!("Hello world!"); +} -- cgit v1.2.3