2017-08-16 04:35:35 -07:00
|
|
|
#!/usr/bin/env moon
|
2017-08-18 17:06:47 -07:00
|
|
|
Game = require 'nomic'
|
|
|
|
core_game = require 'core'
|
|
|
|
game = Game(core_game)
|
2017-08-16 05:01:35 -07:00
|
|
|
|
|
|
|
------------------ BASIC TESTS ---------------------
|
2017-08-16 18:07:00 -07:00
|
|
|
game\run [=[
|
2017-08-16 04:35:35 -07:00
|
|
|
|
2017-08-16 05:19:08 -07:00
|
|
|
say "=========== INITIALIZING GAME ============"
|
2017-08-16 04:35:35 -07:00
|
|
|
|
2017-08-16 05:19:08 -07:00
|
|
|
"fart" := {say "poot"}
|
2017-08-16 05:01:35 -07:00
|
|
|
|
2017-08-16 05:19:08 -07:00
|
|
|
fart
|
2017-08-16 04:35:35 -07:00
|
|
|
|
2017-08-16 05:19:08 -07:00
|
|
|
"fart twice" := {
|
|
|
|
fart
|
|
|
|
fart
|
|
|
|
}
|
2017-08-16 04:35:35 -07:00
|
|
|
|
2017-08-16 05:19:08 -07:00
|
|
|
fart twice
|
2017-08-16 04:35:35 -07:00
|
|
|
|
2017-08-16 05:19:08 -07:00
|
|
|
["greet", "say hello"] := { say "Hello!" }
|
2017-08-16 04:35:35 -07:00
|
|
|
|
2017-08-16 05:19:08 -07:00
|
|
|
greet
|
2017-08-16 04:35:35 -07:00
|
|
|
|
2017-08-16 05:19:08 -07:00
|
|
|
say (return "returned value")
|
|
|
|
say 6
|
|
|
|
say -6
|
2017-08-16 18:07:00 -07:00
|
|
|
say []
|
|
|
|
say [1,2,3,4]
|
|
|
|
say [[1,2],[3,[4,5]]]
|
|
|
|
say (sum [1,2,3,4])
|
|
|
|
help "fart"
|
2017-08-18 17:06:47 -07:00
|
|
|
help "fart twice"
|
|
|
|
|
|
|
|
"fart thrice" := {
|
|
|
|
fart
|
|
|
|
fart
|
|
|
|
fart
|
|
|
|
}
|
|
|
|
help "fart lol"
|
|
|
|
help "yes"
|
2017-08-16 18:07:00 -07:00
|
|
|
|
|
|
|
"five" := {return 5}
|
|
|
|
say (6 times 6)
|
|
|
|
"fitz" := {say (return 99)}
|
|
|
|
fitz
|
|
|
|
"bazwiz $x" := {say (sum $x)}
|
|
|
|
bazwiz [10,20,30]
|
|
|
|
"foobar $x" := {say (return $x)}
|
|
|
|
foobar 55
|
|
|
|
|
|
|
|
"$x squared" := {$x times $x}
|
|
|
|
"$x plus one" := {$x + 1}
|
|
|
|
"$x foo" := {($x * $x) + 1}
|
|
|
|
say (5 foo)
|
|
|
|
|
2017-08-18 17:06:47 -07:00
|
|
|
say (1 st in [1,2,3,4,5])
|
|
|
|
say (2 nd in [1,2,3,4,5])
|
|
|
|
say (3 rd in [1,2,3,4,5])
|
|
|
|
say (4 th in [1,2,3,4,5])
|
|
|
|
|
2017-08-16 18:07:00 -07:00
|
|
|
]=]
|
2017-08-16 04:35:35 -07:00
|
|
|
|
|
|
|
game\def [[you]], (_)=> @you
|
|
|
|
game\run [[you]]
|
|
|
|
game\run [[say (you)]]
|
|
|
|
|
2017-08-18 17:06:47 -07:00
|
|
|
game\run [[
|
|
|
|
"five" := {return 5}
|
|
|
|
]]
|
2017-08-16 04:35:35 -07:00
|
|
|
game\run [[say (five)]]
|
|
|
|
game\def [[$x squared]], (locals)=> locals.x^2
|
|
|
|
game\run [[say ((five) squared)]]
|
|
|
|
|
|
|
|
|
|
|
|
game\def [[remember that $key $relation $value]], (locals)=>
|
|
|
|
with locals
|
|
|
|
assert .relation, "no relation!!"
|
|
|
|
if not @relations[.relation] then @relations[.relation] = {}
|
|
|
|
@relations[.relation][.key] = .value
|
2017-08-16 05:01:35 -07:00
|
|
|
return nil
|
2017-08-16 04:35:35 -07:00
|
|
|
|
2017-08-18 17:06:47 -07:00
|
|
|
game\run [[
|
|
|
|
"remember that $key $relation" := {remember that $key $relation (true)}
|
|
|
|
]]
|
2017-08-16 04:35:35 -07:00
|
|
|
|
|
|
|
game\def [[forget about $key $relation]], (locals)=>
|
|
|
|
with locals
|
|
|
|
if not @relations[.relation] then @relations[.relation] = {}
|
|
|
|
@relations[.relation][.key] = nil
|
2017-08-16 05:01:35 -07:00
|
|
|
return nil
|
2017-08-16 04:35:35 -07:00
|
|
|
|
|
|
|
game\def [[the value of $key $relation]], (locals)=>
|
|
|
|
with locals
|
|
|
|
return (@relations[.relation] or {})[.key]
|
|
|
|
|
2017-08-18 17:06:47 -07:00
|
|
|
game\run [["it is true that $key $relation $value" := {(the value of $key $relation) == $value}]]
|
|
|
|
game\run [["it is true that $key $relation" := {(the value of $key $relation) == (true)}]]
|
2017-08-16 04:35:35 -07:00
|
|
|
|
2017-08-16 18:07:00 -07:00
|
|
|
game\run[[
|
|
|
|
remember that "socrates" "is mortal"
|
|
|
|
say (it is true that "socrates" "is mortal"))
|
|
|
|
]]
|
2017-08-16 04:35:35 -07:00
|
|
|
|
|
|
|
|
|
|
|
game\run [[remember that "socrates" "is mortal"]]
|
|
|
|
game\run [[say (the value of "socrates" "is mortal")]]
|
|
|
|
|
|
|
|
|
|
|
|
game\def [[all keys where $relation is $value]], (locals)=>
|
|
|
|
with locals
|
|
|
|
result = {}
|
|
|
|
for k,v in pairs(@relations[.relation] or {})
|
|
|
|
if v == .value
|
|
|
|
table.insert(result, k)
|
|
|
|
return result
|
|
|
|
|
|
|
|
game\run [[if (1 == 1) then {say "Affirmative"} else {say "Negatory"}]]
|
|
|
|
game\run [[if (1 == 2) then {say "Affirmative"} else {say "Negatory"}]]
|
|
|
|
game\run [[if (1 == 2) then {say "Affirmative"}]]
|
|
|
|
|
|
|
|
game\run [[say (if (1 == 1) then {return "Ternary yes"} else {return "Ternary no"})]]
|
|
|
|
|
2017-08-18 17:06:47 -07:00
|
|
|
game\run [["$who is a member" := {return (it is true that $who "is a member")}]]
|
|
|
|
game\run [["you are a member" := {return ((you) is a member)}]]
|
2017-08-16 04:35:35 -07:00
|
|
|
game\run [[say (you are a member)]]
|
|
|
|
|
|
|
|
game\run [[
|
|
|
|
if (you are a member) then {say "youre a member!"} else {say "youre not a member"}
|
|
|
|
]]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[
|
|
|
|
def: $who is a member
|
|
|
|
return it is true that $who "is a member"
|
|
|
|
|
|
|
|
def: you are a member
|
|
|
|
return (you) is a member
|
|
|
|
|
|
|
|
def: members
|
|
|
|
alias: all members
|
|
|
|
return all keys where "is a member" is "yes"
|
|
|
|
|
|
|
|
def: let $someone join
|
|
|
|
if (you are a member) then {
|
|
|
|
remember that $someone "is a member"
|
|
|
|
}
|
|
|
|
|
|
|
|
def: propose $def
|
|
|
|
if (you are a member) then {
|
|
|
|
remember that $def "is pending"
|
|
|
|
vote yes on $def
|
|
|
|
}
|
|
|
|
|
|
|
|
def: make $voter vote yes on $def
|
|
|
|
alias: make $voter approve $def
|
|
|
|
remember $def "is approved by" $voter
|
|
|
|
if ((all members) == (all $def "is approved by" ?)) then {
|
|
|
|
forget $def "is approved by" ?
|
|
|
|
add def $def
|
|
|
|
}
|
|
|
|
|
|
|
|
def: vote yes on $def
|
|
|
|
make (you) vote yes on $def
|
|
|
|
|
|
|
|
]]
|