String & list concatenation

This commit is contained in:
Dustin Swan 2026-02-01 16:53:45 -07:00
parent c44a6858ff
commit d81318333e
No known key found for this signature in database
GPG key ID: 30D46587E2100467
2 changed files with 17 additions and 2 deletions

View file

@ -19,3 +19,5 @@ e('c = 5; { a = 3, b = c }');
e('rec = { a = 3, b = 5 }; rec.a');
e('rec = { a = 3, b = 5 }; rec{ a = 10 }');
e('add1 = (x \\ x + 1); 3 > add1');
e('[1, 2] & [3, 4]');
e('"abc" & "def"');