pork/examples/count.pork

12 lines
167 B
Plaintext
Raw Normal View History

export func main() {
var x = 1
2023-11-15 07:44:10 +00:00
while x <= 5 {
if x == 3 {
println("The value is 3")
} else {
println("The value is not 3")
}
2023-09-11 08:57:13 +00:00
x++
}
}