0.2.1-next • Published 8 months ago

bynixscript v0.2.1-next

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

What Is BynixScript?

It is a programming language that has easy syntax and has many ready-to-use features.

License Website Contribute Documentation Youtube Releases

Share experiences

If you want to share your experience using BynixScript, you can go to the form page.

Installation

Using npm

npm install -g bynixscript

Using CDN

<script src="https://cdn.jsdelivr.net/npm/bynixscript"></script>

Get Started

Using npm

Run a BynixScript file:

bsr path/to/script.bs

Compile a BynixScript file:

bst path/to/script.bs

To print a BynixScript file to console:

bsp path/to/script.bs

To delete a file

bsd path/to/script.bs

Using CDN

<bynix>
  const message = "Hello from BynixScript!"
  print(message)
</bynix>

Extension

Press the button below to install:

Table of content

Example

class Person:
  constructor(name, age):
    this.name = name
    this.age = age
  end
  
  speak():
    print(`My name is ${this.name} and I'm still ${this.age} years ago`)
  end
end

class Introduction extends Person:
  constructor(name, age, hobby):
    super(name, age)
    this.hobby = hobby
  end
  
  speak():
    print(`My name is ${this.name}, I'm still ${this.age} years ago and I like ${this.hobby}`)
  end
end

const person = new Introduction("Clay", 14, "Coding")
person.speak()

Function

BynixScript has functions such as condition, flow control, handle-recovery, etc. which you can see on the function list page.

Changelog

You can view BynixScript changelog on the Releases page.

0.2.1-next

8 months ago

0.1.1-next

9 months ago

0.2.0

9 months ago

0.1.2-next

9 months ago

0.1.0

9 months ago

0.0.4-next

9 months ago

0.0.3-next.0

9 months ago

0.0.3-next

9 months ago

0.0.2-next

9 months ago

0.0.1-next

10 months ago

0.0.1-next.0

10 months ago

0.0.1

10 months ago