DEV Community

Yoshiya Hinosawa
Yoshiya Hinosawa

Posted on

You can omit `run` from `deno run` command

Since Deno version 1.46, you can omit run of deno run command.

You can execute hello world program like the below:

// hello.js
console.log("hello world");
Enter fullscreen mode Exit fullscreen mode
$ deno hello.js
hello
Enter fullscreen mode Exit fullscreen mode

Happy hacking!

Top comments (0)

Heroku

This site is powered by Heroku

Heroku was created by developers, for developers. Get started today and find out why Heroku has been the platform of choice for brands like DEV for over a decade.

Sign Up

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay