Files
ivy/doc/sample/String.im

7 lines
132 B
Plaintext
Raw Permalink Normal View History

2024-11-02 15:11:00 +00:00
package net.doorstuck.test
2026-01-19 14:20:04 +00:00
s1 = 'hello world'.
2024-11-02 15:11:00 +00:00
2026-01-19 14:20:04 +00:00
s2 = s1 map:[ :c | ^c uppercase ].
2025-11-07 10:07:44 +00:00
s3 = s1 map:[ :c | ^((c ordinal) + 1) to-char ]