``` function foo {print 1.} print defined(foo@). print defined(foo). ``` results in the function being called by the last line: Output: ``` true 1 false ``` Expected output: ``` true false ```
results in the function being called by the last line:
Output:
Expected output: