0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-28 18:26:15 +01:00
posthog/hogvm/__tests__/tuples.hog

11 lines
240 B
Plaintext
Raw Normal View History

2024-06-14 17:27:26 +02:00
print(tuple())
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, 4)), 5)[1][1][1])
print((1, (2, (3, 4)), 5).1.1.1)
print((1, (2, (3, 4)), 5)[1][1][1] + 1)