diff options
author | Ben Sima <ben@bsima.me> | 2022-07-14 01:45:28 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2022-07-17 19:21:12 -0400 |
commit | 7e59ce132303837b05aaa5f173ea2050ac0203f6 (patch) | |
tree | c815a868136e8d725e3d429f504e91fc05c34dd4 /Biz/Bild/Example.rs | |
parent | 973e67f109f634ce347a1894628a8d551f0ccfbd (diff) |
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".
Diffstat (limited to 'Biz/Bild/Example.rs')
-rw-r--r-- | Biz/Bild/Example.rs | 4 |
1 files changed, 4 insertions, 0 deletions
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!"); +} |