2011-06-22 02:38:07 +00:00
|
|
|
|
|
|
|
a = ->
|
|
|
|
with something
|
|
|
|
print .hello
|
|
|
|
print hi
|
|
|
|
print "world"
|
|
|
|
|
|
|
|
with leaf
|
|
|
|
.world!
|
|
|
|
.world 1,2,3
|
|
|
|
|
|
|
|
g = .what.is.this
|
|
|
|
|
|
|
|
.hi 1,2,3
|
|
|
|
|
2011-06-23 06:45:03 +00:00
|
|
|
\hi(1,2).world 2323
|
2011-06-22 02:38:07 +00:00
|
|
|
|
2011-06-23 06:45:03 +00:00
|
|
|
\hi "yeah", "man"
|
2011-06-22 02:38:07 +00:00
|
|
|
.world = 200
|
|
|
|
|
|
|
|
zyzyzy = with something
|
|
|
|
.set_state "hello world"
|
2011-07-17 00:14:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
x = 5 + with Something!
|
|
|
|
\write "hello world"
|
|
|
|
|
|
|
|
|
|
|
|
x = {
|
|
|
|
hello: with yeah
|
|
|
|
\okay!
|
|
|
|
}
|
|
|
|
|
2011-11-02 02:54:13 +00:00
|
|
|
with foo
|
|
|
|
\prop"something".hello
|
|
|
|
.prop\send(one)
|
|
|
|
.prop\send one
|
|
|
|
|
2012-11-01 14:27:52 +00:00
|
|
|
|
|
|
|
--
|
|
|
|
|
|
|
|
with a, b -- b is lost
|
|
|
|
print .world
|
|
|
|
|
|
|
|
mod = with _M = {}
|
|
|
|
.Thing = "hi"
|
|
|
|
|
|
|
|
-- operate on a only
|
|
|
|
with a, b = something, pooh
|
|
|
|
print .world
|
|
|
|
|
|
|
|
x = with a, b = 1, 2
|
|
|
|
print a + b
|
|
|
|
|
|
|
|
print with a, b = 1, 2
|
|
|
|
print a + b
|
|
|
|
|
|
|
|
-- assignment lhs must be evaluated in the order they appear
|
|
|
|
p = with hello!.x, world!.y = 1, 2
|
|
|
|
print a + b
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|