0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-21 21:49:51 +01:00
posthog/hogvm/__tests__/ifJump.hog

21 lines
244 B
Plaintext

let props := {
}
let email := props.email
if (email == '') {
print('ERROR - Email not found!')
print('3')
}
print('1')
if (email == '') {
print('ERROR - Email not found!')
print('3')
} else {
print('else')
}
print('1')