Condition
@Event('start')
start() {
> How old are you ?
Prompt()
if (:text > 18) {
> You are major
}
else if (:text < 18) {
> You are a minor
}
else {
> You are 18 years old
}
}Keywords
foo(options) {
if (unknown options) {
> options are empties
}
}Last updated