aboutsummaryrefslogtreecommitdiff
path: root/core/io.nom
blob: 6b67b508f7a1dac4ff6ceeeddf39a146b825a26f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env nomsu -V4.8.10
#
    This file contains basic input/output code

use "core/metaprogramming.nom"

(say %message) compiles to (..)
    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"

(ask %prompt) compiles to (..)
    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"