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

16 lines
297 B
Plaintext

print('-- test if else --')
{
if (true) print(1) else print(2)
if (true) print(1) else print(2)
if (false) print(1) else print(2)
if (true) { print(1) } else { print(2) }
let a := true
if (a) {
let a := 3
print(a + 2)
} else {
print(2)
}
}