diff --git a/local_tests/test_integer_only.nyash b/local_tests/test_integer_only.nyash new file mode 100644 index 00000000..3db817d5 --- /dev/null +++ b/local_tests/test_integer_only.nyash @@ -0,0 +1,7 @@ +// Test without string literals +static box Main { + main() { + local x = 42 + return x + } +} \ No newline at end of file diff --git a/local_tests/test_simple_string.nyash b/local_tests/test_simple_string.nyash new file mode 100644 index 00000000..155ad9b3 --- /dev/null +++ b/local_tests/test_simple_string.nyash @@ -0,0 +1,7 @@ +// Test simple string creation +static box Main { + main() { + local message = "Hello" + return message + } +} \ No newline at end of file