0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-25 02:49:32 +01:00
posthog/hogvm/__tests__/__snapshots__/loops.stdout

39 lines
378 B
Plaintext
Raw Normal View History

-- test while loop --
1
2
3
3
-- test for loop --
0
1
2
-- test emptier for loop --
woo
woo
woo
hoo
2024-07-11 18:34:21 +02:00
-- for in loop with arrays --
1
2
3
-- for in loop with arrays and keys --
0 1
1 2
2 3
-- for in loop with tuples --
1
2
3
-- for in loop with tuples and keys --
0 1
1 2
2 3
-- for in loop with dicts --
v1
v2
v3
-- for in loop with dicts and keys --
first v1
second v2
third v3