Compare commits
No commits in common. "examples" and "master" have entirely different histories.
6 changed files with 0 additions and 40 deletions
|
|
@ -1,5 +0,0 @@
|
||||||
module
|
|
||||||
|
|
||||||
foo(),
|
|
||||||
foo(3),
|
|
||||||
foo{ 1, foo: true },
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
module
|
|
||||||
|
|
||||||
a + 2 * 3 - 4,
|
|
||||||
{ 1, nil, true, c: "foo" },
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
module
|
|
||||||
|
|
||||||
foo.bar,
|
|
||||||
foo.bar = 7,
|
|
||||||
|
|
||||||
foo[1 + 1],
|
|
||||||
foo[1 + 1] = 2,
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
module
|
|
||||||
|
|
||||||
function() true,
|
|
||||||
function(arg) arg + 1,
|
|
||||||
function{ arg } arg + 1,
|
|
||||||
function foo() true,
|
|
||||||
function foo(arg) arg + 1,
|
|
||||||
function foo{ arg } arg + 1,
|
|
||||||
|
|
||||||
function() foo(),
|
|
||||||
(function () foo)(),
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
module
|
|
||||||
|
|
||||||
{ a, b, c: d } = { 1, 2, c: 3 },
|
|
||||||
local { a, b, c: d } = { 1, 2, c: 3 },
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
module
|
|
||||||
|
|
||||||
["x"],
|
|
||||||
["x"] = nil,
|
|
||||||
local ["x"] = nil,
|
|
||||||
|
|
||||||
x,
|
|
||||||
x = nil,
|
|
||||||
local x = nil,
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue