0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-21 13:39:22 +01:00
posthog/hogvm/__tests__/keysValues.hog
2024-07-11 18:34:21 +02:00

16 lines
217 B
Plaintext

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))