diff --git a/scripts/hello_world.toy b/scripts/hello_world.toy index c71d05d..30471b6 100644 --- a/scripts/hello_world.toy +++ b/scripts/hello_world.toy @@ -1 +1,6 @@ -print "Hello world"; \ No newline at end of file +print "Hello world"; + +var answer = 42; +var question = 69; + +print answer + question; \ No newline at end of file