Files
pork/examples/count.pork

12 lines
167 B
Plaintext
Raw Normal View History

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