more on everything.kab
This commit is contained in:
parent
8d53533235
commit
a3e222237a
|
@ -4,11 +4,19 @@
|
||||||
# 'using', 'and', and the commas should be lexed out because they don't mean
|
# 'using', 'and', and the commas should be lexed out because they don't mean
|
||||||
# anything However, they should be required nonetheless for the sake of
|
# anything However, they should be required nonetheless for the sake of
|
||||||
# clarity and consistency.
|
# clarity and consistency.
|
||||||
|
# ^^ perhaps? leave in if it's useful at parser
|
||||||
|
|
||||||
p = 5;
|
to myFunction using r, x, and p:
|
||||||
k = 6;
|
|
||||||
g = 7;
|
|
||||||
|
|
||||||
|
|
||||||
to myFunction using k, x, and p:
|
# Hoisting and declaration is implicit
|
||||||
|
n = 5;
|
||||||
|
_7 = 6;
|
||||||
|
_kt_hr = "string literal!";
|
||||||
|
|
||||||
|
# OOP-ish-ly:
|
||||||
|
# g = 7 + t.x.find(n, k, g+5, p) + 6;
|
||||||
|
g = (t's x: find using n, k, g + 5, p) + 6;
|
||||||
|
|
||||||
|
|
||||||
|
for module in p:
|
||||||
|
|
Loading…
Reference in New Issue