add basic parameter parsing

This commit is contained in:
Luna 2019-07-01 15:55:19 -03:00
parent 4f7478d7b2
commit 11f810a5f3
3 changed files with 56 additions and 5 deletions

View file

@ -1,3 +1,3 @@
fn main() {
println("hello world!");
fn main(a int) {
// println("hello world!");
}