-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3697 from iri/master
Fixed user instruction
- Loading branch information
Showing
1 changed file
with
9 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,8 +63,13 @@ All of them have something **we don't tolerate**: | |
## Quick Start | ||
|
||
First, install [Java SE](https://www.oracle.com/java/technologies/downloads/), | ||
[npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm), | ||
and [eoc](https://github.com/objectionary/eoc). | ||
[npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm). | ||
|
||
Then, you install [eoc](https://github.com/objectionary/eoc). You could install it as NPM package: | ||
|
||
```bash | ||
npm install -g [email protected] | ||
``` | ||
|
||
Then, start with a simple EO program in `app.eo` file: | ||
|
||
|
@@ -78,13 +83,13 @@ Then, start with a simple EO program in `app.eo` file: | |
Compile it like this (may take a minute or so): | ||
|
||
```bash | ||
eoc link | ||
eoc --easy link | ||
``` | ||
|
||
Then, run it: | ||
|
||
```bash | ||
eoc --alone dataize app | ||
eoc --easy --alone dataize app | ||
``` | ||
|
||
You should see "Hello, world!" printed. | ||
|