Hash :
c183399e
Author :
Thomas de Grivel
Date :
2024-09-06T17:46:57
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
[]
[[] | []]
[[], []]
[[], [], []]
[[], [], [], []]
[[], [] | []]
[[], [], [] | []]
[[] | [[], []]]
[[] | [[], [], []]]
[[] | [[] | []]]
[[] | [[], [] | []]]
[[] | [[], [], [] | []]]
[[[], []] | [[], []]]
[[[] | []] | [[] | []]]
[:a | []]
[:a, :b]
[:a, :b, :c]
[:a | :b]
[:a, :b | :c]
[:a, :b, :c, :d]
[:a, :b, :c | :d]
# comment 0
# comment 0b
[ # comment 1
# comment 1b
:a # comment 2
# comment 2b
, # comment 3
# comment 3b
:b ## comment 4
## comment 4b
, ## comment 5
## comment 5b
:c ## comment 6
## comment 6b
| ## comment 7
## comment 7b
:d ## comment 8
## comment 8b
] ## comment 9
## comment 9b
quote List.map([1, 2, 3, 4], fn (x) { x * 2 })
List.map([1, 2, 3, 4], fn (x) { x * 2 })
quote List.reverse([1, 2, 3, 4])
List.reverse([1, 2, 3, 4])
quote List.has?([:read], :read)
List.has?([:read], :read)
quote List.has?([:read], :write)
List.has?([:read], :write)
quote List.join(["1", "2", "3"], ", ")
List.join(["1", "2", "3"], ", ")