Compare commits

..

No commits in common. "examples" and "master" have entirely different histories.

6 changed files with 0 additions and 40 deletions

View file

@ -1,5 +0,0 @@
module
foo(),
foo(3),
foo{ 1, foo: true },

View file

@ -1,4 +0,0 @@
module
a + 2 * 3 - 4,
{ 1, nil, true, c: "foo" },

View file

@ -1,7 +0,0 @@
module
foo.bar,
foo.bar = 7,
foo[1 + 1],
foo[1 + 1] = 2,

View file

@ -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)(),

View file

@ -1,4 +0,0 @@
module
{ a, b, c: d } = { 1, 2, c: 3 },
local { a, b, c: d } = { 1, 2, c: 3 },

View file

@ -1,9 +0,0 @@
module
["x"],
["x"] = nil,
local ["x"] = nil,
x,
x = nil,
local x = nil,