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
(define (D:foo x y)
(+ x y))
It fails with error
ERR: context expected in function define : DQuote
It works ok if i just use a 2 character name for the context like this
Code Select
(define (DC:foo x y)
(+ x y))