From e22c35681f90740b4f5006c30b3f154ebd1f8ea2 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Fri, 14 Sep 2018 19:17:09 -0700 Subject: Auto-upgraded everything. --- core/io.nom | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'core/io.nom') diff --git a/core/io.nom b/core/io.nom index d656419..1e87209 100644 --- a/core/io.nom +++ b/core/io.nom @@ -1,23 +1,23 @@ -#!/usr/bin/env nomsu -V3.8.7.6 +#!/usr/bin/env nomsu -V4.8.8.6 # This file contains basic input/output code use "core/metaprogramming.nom" compile [say %message] to (..) - lua> ".." - if \%message.type == "Text" then + lua> "\ + ..if \%message.type == "Text" then return LuaCode(tree.source, "print(", \(%message as lua expr), ");"); else return LuaCode(tree.source, "print(tostring(", \(%message as lua expr), "));"); - end + end" compile [ask %prompt] to (..) - lua> ".." - if \%prompt.type == "Text" then + lua> "\ + ..if \%prompt.type == "Text" then return LuaCode.Value(tree.source, "(io.write(", \(%prompt as lua expr), ") and io.read())"); else return LuaCode.Value(tree.source, "(io.write(tostring(", \(..) %prompt as lua expr .., ")) and io.read())"); - end + end" -- cgit v1.2.3