Serpent7776
Serpent7776@programming.dev
Joined
6 posts • 5 comments
I added bun and deno. Updated results are on the github page. Deno is similar to node, bun takes much less time.
I can actually define this in TCL:
% proc ifn't {cond cmds} {if {!$cond} {uplevel $cmds}}
% ifn't false {puts 12}
12
% ifn't true {puts 12}
%