Implement arguments prototype
This commit is contained in:
parent
09380e0d01
commit
9ccd345bb3
1007
bootstrap/main.c
1007
bootstrap/main.c
File diff suppressed because it is too large
Load Diff
2
debug.sh
2
debug.sh
@ -15,7 +15,7 @@ exe_name="nest"
|
|||||||
exe_path=$build_dir/$exe_name
|
exe_path=$build_dir/$exe_name
|
||||||
debug_flags="-g"
|
debug_flags="-g"
|
||||||
optimization_flags="-O0"
|
optimization_flags="-O0"
|
||||||
bootstrap_args="$path i"
|
bootstrap_args="$path c"
|
||||||
case "$OSTYPE" in
|
case "$OSTYPE" in
|
||||||
darwin*) static=0;;
|
darwin*) static=0;;
|
||||||
linux*) static=1;;
|
linux*) static=1;;
|
||||||
|
@ -21,6 +21,7 @@ test_names=(
|
|||||||
"shift_left"
|
"shift_left"
|
||||||
"shift_right"
|
"shift_right"
|
||||||
"thousand_simple_functions"
|
"thousand_simple_functions"
|
||||||
|
"simple_arg"
|
||||||
)
|
)
|
||||||
|
|
||||||
if [ "$all" == "1" ]
|
if [ "$all" == "1" ]
|
||||||
|
4
tests/simple_arg.nat
Normal file
4
tests/simple_arg.nat
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
fn main(argument_count: s32) s32
|
||||||
|
{
|
||||||
|
return argument_count - 1;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user