Advertisement
anticrisis

node vs tcl startup time

Feb 3rd, 2021
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.28 KB | None | 0 0
  1. anticrisis@ALIEN51:~$ time echo 'console.log("hello world")' | node
  2. hello world
  3.  
  4. real    0m0.352s
  5. user    0m0.354s
  6. sys     0m0.000s
  7. anticrisis@ALIEN51:~$ time echo 'puts "hello world"' | tclsh
  8. hello world
  9.  
  10. real    0m0.010s
  11. user    0m0.009s
  12. sys     0m0.001s
  13. anticrisis@ALIEN51:~$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement