aboutsummaryrefslogtreecommitdiff
path: root/tests/test_hello_world.py
diff options
context:
space:
mode:
authorMelody Horn <melody@boringcactus.com>2020-11-04 02:07:00 -0700
committerMelody Horn <melody@boringcactus.com>2020-11-04 02:07:00 -0700
commit338049020a17831e68b6a437bb038d8f10bfc45e (patch)
tree85c3cf952177a45064d79ab9de512f0f59be5d3d /tests/test_hello_world.py
parentd8cd8a6590d5719cb6aae87d5867db696685baf6 (diff)
downloadreference-compiler-338049020a17831e68b6a437bb038d8f10bfc45e.tar.gz
reference-compiler-338049020a17831e68b6a437bb038d8f10bfc45e.zip
bring in updates to spec
Diffstat (limited to 'tests/test_hello_world.py')
-rw-r--r--tests/test_hello_world.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_hello_world.py b/tests/test_hello_world.py
index ec1ccdd..594ab4f 100644
--- a/tests/test_hello_world.py
+++ b/tests/test_hello_world.py
@@ -8,7 +8,7 @@ class TestHelloWorld(unittest.TestCase):
code = r"""
include "stdio.hro";
-int main() {
+int32 main() {
printf("Hello, world!\n");
return 0;
}