This page (revision-4) was last changed on 2025-07-30 12:47 by Murray Altheim

This page was created on 2025-07-30 12:30 by Murray Altheim

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
4 2025-07-30 12:47 2 KB Murray Altheim to previous
3 2025-07-30 12:35 2 KB Murray Altheim to previous | to last
2 2025-07-30 12:33 2 KB Murray Altheim to previous | to last
1 2025-07-30 12:30 1 KB Murray Altheim to last

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 3 added one line
%%info
At line 5 added one line
%%
At line 47 added 10 lines
%%info
What's going on? Below, we first enter the REPL, then declare a variable "x" whose value is "hello".
We then proceed to print out transformations of x's value using some of the methods that are available
to strings, like {{upper()}} (uppercase) or {{replace()}} (replace all instances of a pattern within
the string with a different value).
Note that executing these methods on the string do not alter its stored value, only return the result
of the method being applied to the string. This is proved by the last {{print(x)}}.
%%
At line 62 changed 2 lines
jello
>>>
jello
>>> print(x)
hello
>>>