1.3.0 • Published 2 years ago

uascript v1.3.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

UaScript

Ukrainian programming language

https://uascript.web.app/

npm version Downloads

To run demo:

(in cloned this project from git)

npm i npm run demo

How to use in own projects

Before you need to install Node.js

  1. Run npm init and complete all actions.

  2. Run script inside npm project: npm i uascript

  3. Create folder with your src source and create inside index.uas

  4. Next input into index.uas file simple code to say hello to this world:)
функція Головна() {
    написати("Привіт, світ!");
}

Головна();
  1. Then create uas.config.json config file in the root of your project. And insert there next:
{
  "from": "src",
  "to": "dist"
}

The tree of your project should be something like this:

├── _src
│   └── index.uas
│   _uas.config.json
├── _package.json
...
  1. Then open console and execute only
uas

After that UaScript compiles into JS

  1. Run this and enjoy 🦄
node dist
1.3.0

2 years ago

1.2.1

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago