kuro-lang
TypeScript icon, indicating that this package has built-in type declarations

0.0.6 • Public • Published

Quro-Discord-Art@2x

Kuro

Generic programming language and environment written in TypeScript.

📝 Details

Kuro is a programming language with a safe, general syntax that can be embedded in a variety of platforms.

💻 Platforms

The Kuro language will be available on the following platforms.(🌴 is tree-walk interpreter. ↪️ is transpiler.)

  • [ ] 🌴Node.js
  • [ ] 🌴Browser JS
  • [ ] ↪️Kuro to JS
  • [ ] 💻Kuro VM

🚀 Features

  • Output lexes of the source code.
  • Output AST of the lexes or source code.
  • Debugging helper for token and AST.

⭐️ Example Syntax

(using rust highlight syntax)

Tax calculation

use io

fn tax(tax, price) {
  price + price * (tax / 100)
}

fn suffix(suffix, value) {
  value + suffix // join value and suffix and returns it.
}

const yen = suffix("yen") // create yen function that returns join given value and "yen".
const tax10 = tax(10)     // create tax10 function that returns amount of the 10% sales tax applied.

1000 -> tax10 -> yen -> println // 1100

Browser & Fetch API

use "browser" * // expand all fields of "browser" module.

const url = "https://jsonplaceholder.typicode.com/todos/1"

fn format(object) {
  JSON.stringify(json, undefined, 2)
}

const pre = document.createElement("pre")

pre.innerHTML = url -> fetch -> await -> json -> await -> format

pre -> document.body.appendChild

🔧 Specifications

Dependencies (4)

Dev Dependencies (11)

Package Sidebar

Install

npm i kuro-lang

Weekly Downloads

0

Version

0.0.6

License

MIT

Unpacked Size

375 kB

Total Files

804

Last publish

Collaborators

  • hota1024