0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-22 17:24:15 +01:00
posthog/hogvm/__tests__/keysValues.hog

16 lines
217 B
Plaintext
Raw Normal View History

2024-07-11 18:34:21 +02:00
let a := [3,4,5]
let b := (3,4,5)
let c := {'key': 'value', 'other': 'val'}
print('>> A')
print(keys(a))
print(values(a))
print('>> B')
print(keys(b))
print(values(b))
print('>> C')
print(keys(c))
print(values(c))