The Uguisu is a statically typed scripting language.
Not ready to use yet.
The syntax is like this:
fn calc(x: number): number {
if x == 0 {
return 1;
} else {
return calc(x - 1) * 2;
}
}
fn main() {
var value = 10;
console.writeNum(calc(value));
}
- English (Not translated yet.)
- 日本語
Node.js and npm installation is required.
Local installation is also ok if only the JavaScript API is used.
$ npm i -g uguisu-js
Usage: uguisu [options] [commands]
Examples:
uguisu new <projectDir>
uguisu run <projectDir>
uguisu check <projectDir>
uguisu run --skip-check <projectDir>
uguisu <command> -h
uguisu -v
Options:
-h, --help Print help message.
-v, --version Print Uguisu version.
Commands:
new Create a new uguisu project.
run Run a uguisu project.
check Perform the check for a project.
The following command creates a project.
$ uguisu new ./my-project
The following command runs the project. A code check is also performed before execution.
$ uguisu run ./my-project
Uguisu only supports the ES Modules (ESM).
import { Uguisu } from 'uguisu-js';
const uguisu = new Uguisu({
stdout(str) {
console.log(str);
}
});
const projectDir = './your-project';
// Check code and Run
uguisu.run(projectDir);
Code checking and running can also be separated:
// Check code
uguisu.check(projectDir);
// Run
uguisu.run(projectDir, { skipCheck: true });
MIT License