RosettaCodeData/Task/Substring/Elena/substring.elena
2017-09-25 22:28:19 +02:00

16 lines
404 B
Text

import extensions.
program =
[
var s := "0123456789".
var n := 3.
var m := 2.
var c := $51.
var z := "345".
console writeLine(s Substring:m at:n).
console writeLine(s Substring(s length - n) at:n).
console writeLine(s Substring(s length - 1) at:0).
console writeLine(s Substring:m at(s indexOf:c at:0)).
console writeLine(s Substring:m at(s indexOf:z at:0)).
].