-- #true and #false are not valid selector in Lua
if (not smalltalk.Test:perform_("false")) then print("--No issue sending #false") end
if (smalltalk.Test:perform_("true")) then print("--No issue sending #true") end
if (smalltalk.Test:perform_("nil")) then print("--No issue sending #nil") end
|
| On message not understood, following Lua rules, it returns nil! and no error is triggered. |
| Implement DateTime |
| Implement source extraction for functions (and BlockClosure?) |
| Multiple return values |