Implicit creation of contexts not working newlisp 10.5.3
Posted: Sun Sep 08, 2013 7:09 am
In the newlisp manual in the "Creating contexts" section it is mentioned that contexts are created
implicitly when referring to a context that does not exist.
This is working in general but if i use a single character as a context name then it fails with the following error
If i try to do this
It fails with error
implicitly when referring to a context that does not exist.
This is working in general but if i use a single character as a context name then it fails with the following error
If i try to do this
Code: Select all
(define (D:foo x y)
(+ x y))
It works ok if i just use a 2 character name for the context like thisERR: context expected in function define : D
Code: Select all
(define (DC:foo x y)
(+ x y))