From 06aaa7ffdd600b36563e6975e5de02c5ed083343 Mon Sep 17 00:00:00 2001 From: Francesco Cozzuto Date: Thu, 25 Nov 2021 10:28:21 +0100 Subject: [PATCH] working on docs --- samples/250_Functions.noja | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/samples/250_Functions.noja b/samples/250_Functions.noja index b1eb051..b8b6ef0 100644 --- a/samples/250_Functions.noja +++ b/samples/250_Functions.noja @@ -80,10 +80,10 @@ print(p, ' * ', q, ' = ', r, '\n'); # moment). # # 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 -# user. The print function is one of these variables. One may override -# these variables but the effect only lasts for the lifetame of the -# context local to the assignment. +# provided by the runtime of the language, are accessible everywhere and +# can't be modified by the user. The print function is one of these +# variables. One may override these variables but the effect only has +# effect within that context. # Overwrite the print variable inside the global scope.. print = 5;