Z-Sharp/Slang/script.sl
2021-12-24 22:28:46 -05:00

17 lines
131 B
Plaintext

int x = 1
void Main(input)
{
print input
while x < 10
{
x += 1
print x
}
x += 1
print x
x -= 1
print x
}
Main "hi"