4f7abb5f19
from the identifier syntax parsing
26 lines
347 B
Hare
26 lines
347 B
Hare
@tim says "hello world, it's a good day"
|
|
$x = 3
|
|
$x + 1
|
|
if $x == 4 {
|
|
@tim says "5"
|
|
}
|
|
elif $x < 5 {
|
|
|
|
@tim says "<5"
|
|
}
|
|
else {
|
|
@tim says "whar"
|
|
}
|
|
label:
|
|
$choice_string = choice "choice numero uno" {
|
|
@tim says "super sad"
|
|
}
|
|
or "choice numero duo" {
|
|
@tim says "super unsad"
|
|
}
|
|
or "choice numero tres" {
|
|
@tim says "hola mi amigos"
|
|
goto label
|
|
}
|
|
END
|