0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-25 11:17:50 +01:00
posthog/hogvm/__tests__/ifElse.hog
2024-06-07 11:37:53 +02:00

16 lines
310 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);
}
}