From 6160ae134a195b40d76fada9daf24f0df6335484 Mon Sep 17 00:00:00 2001 From: Ingars Ribners Date: Wed, 18 Dec 2024 12:16:25 +0300 Subject: [PATCH 1/2] Update README.md Also user instruction fix here (workaround ,until warnings issue will be solved) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 192868faf7..b0dd3d2700 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ All of them have something **we don't tolerate**: 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). +and [eoc](https://github.com/objectionary/eoc) (`eoc` is part of [eolang][npm] NPM package). Then, start with a simple EO program in `app.eo` file: @@ -78,13 +78,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. From 9d6d8ea233dc7dc616761a84883706576daba98c Mon Sep 17 00:00:00 2001 From: Ingars Ribners Date: Wed, 18 Dec 2024 12:34:47 +0300 Subject: [PATCH 2/2] Update README.md --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b0dd3d2700..14baee210a 100644 --- a/README.md +++ b/README.md @@ -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) (`eoc` is part of [eolang][npm] NPM package). +[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 eolang@0.28.0 +``` Then, start with a simple EO program in `app.eo` file: