Merge pull request #35 from birth-software/args

Implement arguments prototype
This commit is contained in:
David 2024-08-01 13:24:17 +02:00 committed by GitHub
commit a552f21198
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 684 additions and 330 deletions

File diff suppressed because it is too large Load Diff

View File

@ -15,7 +15,7 @@ exe_name="nest"
exe_path=$build_dir/$exe_name
debug_flags="-g"
optimization_flags="-O0"
bootstrap_args="$path i"
bootstrap_args="$path c"
case "$OSTYPE" in
darwin*) static=0;;
linux*) static=1;;

View File

@ -21,6 +21,7 @@ test_names=(
"shift_left"
"shift_right"
"thousand_simple_functions"
"simple_arg"
)
if [ "$all" == "1" ]

4
tests/simple_arg.nat Normal file
View File

@ -0,0 +1,4 @@
fn main(argument_count: s32) s32
{
return argument_count - 1;
}