Skip to content
This repository has been archived by the owner on Aug 31, 2023. It is now read-only.

Commit

Permalink
update snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
nissy-dev committed Jul 30, 2023
1 parent b9392e6 commit d18d1dc
Show file tree
Hide file tree
Showing 475 changed files with 14,988 additions and 2,983 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,84 @@ a = [


]

b = [
100,

(200)
,

300
,

1
,
2, 3
]

c = [
"apple",
"banana",
"blueberry",

"red",
"blue"
,
"yellow",

"broccoli",
"celery",
"lettuce"
,

"green"
,
"green",
"green",

//an egg
"egg",
//a bigger egg
"big egg"
//the biggest egg
,
"huge egg"
,

//not an egg
"lasagna"

]

_ = [
a,

b //
]

_ = [
(a),

b, //
];

_ = [
(((((
a = b/* comment */))/* comment */))),

c //
]

_ = [
(((((
(a = b)/* comment */))/* comment */))),

c //
]

_ = [
(a=b

),
b, //
];
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,70 @@ a = [

4,
];

b = [
100,

200,

300,

1, 2, 3,
];

c = [
"apple",
"banana",
"blueberry",

"red",
"blue",
"yellow",

"broccoli",
"celery",
"lettuce",

"green",
"green",
"green",

//an egg
"egg",
//a bigger egg
"big egg",
//the biggest egg
"huge egg",

//not an egg
"lasagna",
];

_ = [
a,

b, //
];

_ = [
a,

b, //
];

_ = [
(a = b) /* comment */ /* comment */,

c, //
];

_ = [
(a = b) /* comment */ /* comment */,

c, //
];

_ = [
(a = b),
b, //
];
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
a = [
[1,2],
[1,2],
]

a = [
#[1,2],
#[1,2],
]

a = [
{a, b},
{a, b},
]

a = [
#{a, b},
#{a, b},
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
a = [
[1, 2],
[1, 2],
];

a = [
#[1, 2],
#[1, 2],
];

a = [
{ a, b },
{ a, b },
];

a = [
#{ a, b },
#{ a, b },
];
Loading

0 comments on commit d18d1dc

Please sign in to comment.