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
267 B
Plaintext
Raw Normal View History

print([]);
print([1, 2, 3]);
print([1, '2', 3]);
print([1, [2, 3], 4]);
print([1, [2, [3, 4]], 5]);
let a := [1, 2, 3];
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);
print([1, [2, [3, 4]], 5].1.1.1);