mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-08-02 12:50:55 +00:00
12 lines
167 B
Plaintext
12 lines
167 B
Plaintext
export func main() {
|
|
var x = 1
|
|
while x <= 5 {
|
|
if x == 3 {
|
|
println("The value is 3")
|
|
} else {
|
|
println("The value is not 3")
|
|
}
|
|
x++
|
|
}
|
|
}
|