removed outdated doc paragraph about functions

This commit is contained in:
Francesco Cozzuto
2021-12-01 00:11:57 +01:00
parent da61b1a9d9
commit fba9698b8b
2 changed files with 1 additions and 68 deletions
+1 -26
View File
@@ -9,29 +9,4 @@ fun fail(p)
assert(false);
}
#fail(0);
defined_globally = 111;
fun A()
{
print('Hello from A!\n');
defined_in_A = 10;
fun B()
{
defined_in_B = 33;
print('Hello from B!\n');
print('defined_globally = ', defined_globally, '\n');
print('defined_in_A = ', defined_in_A, '\n');
print('defined_in_B = ', defined_in_B, '\n');
}
B();
print('defined_in_B = ', defined_in_B, '\n');
}
A();
fail(0);