Skip to content

Latest commit

 

History

History
executable file
·
13 lines (9 loc) · 172 Bytes

IDEAS.md

File metadata and controls

executable file
·
13 lines (9 loc) · 172 Bytes

Objects/structures? Dictionaries?

s = struct (x, y);

a = s(1, 2);
say a.x; # 1
say a.y; # 2

d = {"a": "A";, "b": "B", "c": "C"}

capital_A = d / "a" # "A"