Implement arguments prototype

This commit is contained in:
David Gonzalez Martin 2024-07-30 22:46:34 +02:00
parent 09380e0d01
commit 9ccd345bb3
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;
}