5 lines
132 B
Text
5 lines
132 B
Text
|
|
string$ = "Rosetta Code"
|
||
|
|
Print Mid$(string$, 2)
|
||
|
|
Print Left$(string$, (Len(string$) - 1))
|
||
|
|
Print Mid$(string$, 2, (Len(string$) - 2))
|