feat: bootstrap skeleton + lexer (Phase 0)
This commit is contained in:
Vendored
+11
@@ -0,0 +1,11 @@
|
||||
import Std::Io::PrintLine;
|
||||
|
||||
func Add(a: int32, b: int32) -> int32 {
|
||||
return a + b;
|
||||
}
|
||||
|
||||
func Main() -> int {
|
||||
let result: int32 = Add(10, 20);
|
||||
PrintLine(c8"Hello from Bux!");
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user