Prohibit user functions with built-in names

This commit is contained in:
Roman Venediktov 2024-03-14 08:02:00 +01:00
parent 907a9f4f93
commit 9fa02845cb
2 changed files with 18 additions and 7 deletions

View file

@ -1,5 +1,5 @@
infix ++ at + (a, b) { a+b}
infix +++ at + (a, b) { a+b}
var x = read ();
write (infix ++ (2, 3))
write (infix +++ (2, 3))