|
|
|
|
|
by donatj
1660 days ago
|
|
I can’t speak for Lisp, but JavaScript isn’t going to write that to standard out, it would just be a statement that didn’t do anything. You would need something like import { stdout } from 'process';
stdout.write("Hello World");
|
|