0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-22 08:40:03 +01:00
posthog/hogvm/__tests__/arrays.hog

13 lines
270 B
Plaintext
Raw Normal View History

print([])
print([1, 2, 3])
2024-06-20 16:05:15 +02:00
print([1, '2', 3, ])
print([1, [2, 3], 4])
print([1, [2, [3, 4]], 5])
let a := [1, 2, 3]
2024-06-20 16:05:15 +02:00
print(a[1], )
print([1, 2, 3][1], )
print([1, [2, [3, 4], ], 5][1][1][1])
print([1, [2, [3, 4]], 5][1][1][1] + 1)
2024-06-20 16:05:15 +02:00
print([1, [2, [3, 4, ], ], 5, ].1.1.1)