0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-22 08:40:03 +01:00
posthog/hogvm/__tests__/ifJump.hog

21 lines
244 B
Plaintext
Raw Normal View History

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