mirror of
https://github.com/artegoser/ONLang
synced 2024-11-05 20:43:57 +03:00
29 lines
474 B
Text
29 lines
474 B
Text
|
[
|
||
|
{
|
||
|
let: {
|
||
|
seconds: { toNumber: { input: "Enter the seconds to count down: " } },
|
||
|
},
|
||
|
},
|
||
|
|
||
|
{
|
||
|
loop: [
|
||
|
{
|
||
|
if: {
|
||
|
condition: { comp: [{ var: "seconds" }, "<=", 0] },
|
||
|
body: ["break"],
|
||
|
},
|
||
|
},
|
||
|
[{ var: "seconds" }, " seconds left"],
|
||
|
{
|
||
|
assign: {
|
||
|
seconds: { calc: [{ var: "seconds" }, "-", 1] },
|
||
|
},
|
||
|
},
|
||
|
{ sleep: 1000 },
|
||
|
"clear",
|
||
|
],
|
||
|
},
|
||
|
|
||
|
["Time's up"],
|
||
|
]
|