pork/examples/count.pork

10 lines
105 B
Plaintext
Raw Normal View History

export let count = 5
2023-09-11 08:57:13 +00:00
export func main() {
var x = 1
2023-09-11 08:57:13 +00:00
while x <= count {
println(x)
2023-09-11 08:57:13 +00:00
x++
}
}