working on docs

This commit is contained in:
Francesco Cozzuto
2021-11-25 10:28:21 +01:00
parent 1769ffc995
commit 06aaa7ffdd
+4 -4
View File
@@ -80,10 +80,10 @@ print(p, ' * ', q, ' = ', r, '\n');
# moment). # moment).
# #
# The only exception is made for the "built in" variables, which are # The only exception is made for the "built in" variables, which are
# provided by the runtime of the language and can't be modified by the # provided by the runtime of the language, are accessible everywhere and
# user. The print function is one of these variables. One may override # can't be modified by the user. The print function is one of these
# these variables but the effect only lasts for the lifetame of the # variables. One may override these variables but the effect only has
# context local to the assignment. # effect within that context.
# Overwrite the print variable inside the global scope.. # Overwrite the print variable inside the global scope..
print = 5; print = 5;