learnyounode
Version:
Learn You The Node.js For Much Win! An intro to Node.js via a set of self-guided workshops.
25 lines (16 loc) • 657 B
Markdown
Write a program that prints the text "HELLO WORLD" to the console (stdout).
----------------------------------------------------------------------
## HINTS
To make a Node.js program, create a new file with a `.js` extension and start writing JavaScript! Execute your program by running it with the `node` command. e.g.:
```sh
$ node program.js
```
You can write to the console in the same way as in the browser:
```js
console.log('text')
```
When you are done, you must run:
```sh
$ {appname} verify program.js
```
to proceed. Your program will be tested, a report will be generated, and the lesson will be marked 'completed' if you are successful.