From 211744535e1bc5391db408563b8e47fc44f09006 Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Fri, 10 Apr 2026 12:15:02 +1000 Subject: [PATCH] Tweak --- scripts/hello_world.toy | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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