From e425d56954564c1f241df98a1dcad4dfadc5b3c6 Mon Sep 17 00:00:00 2001 From: NetLap4User Date: Mon, 24 Oct 2016 09:41:49 +0000 Subject: [PATCH] Resolve unbound value x error in strings example --- test/examples/strings.px | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/examples/strings.px b/test/examples/strings.px index 817465c..f17be4f 100644 --- a/test/examples/strings.px +++ b/test/examples/strings.px @@ -1,3 +1,5 @@ -- print "hello world!" +let x = 10; + print "#{x + 10}" \ No newline at end of file