mirror of
https://github.com/sam-astro/Z-Sharp.git
synced 2025-12-13 09:02:10 +00:00
17 lines
131 B
Plaintext
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" |