bynixscript
v0.2.1-next
Published
This is new Programming Language.
Downloads
26
Readme
What Is BynixScript?
It is a programming language that has easy syntax and has many ready-to-use features.
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.