Tachyon gives:
t> function f() { return "hello!"; }
t> print(typeof f) object
t> print(f instanceof Function) true
and V8 gives:
d8> function f() { return "hello!"; } d8> print(typeof f) function d8> print(f instanceof Function) true
Someone needs to fix that...
Marc