mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 06:48:48 +00:00
18 lines
208 B
Text
18 lines
208 B
Text
|
|
fun printString (x) {
|
||
|
|
for i:=0, i<x.length, i:=i+1 do
|
||
|
|
write (x[i])
|
||
|
|
od
|
||
|
|
}
|
||
|
|
|
||
|
|
n := read ();
|
||
|
|
|
||
|
|
x := "abcdefgh";
|
||
|
|
|
||
|
|
printString (x);
|
||
|
|
|
||
|
|
for i:=0, i<x.length, i:=i+1 do
|
||
|
|
x[i] := x[i]+2
|
||
|
|
od;
|
||
|
|
|
||
|
|
printString (x)
|