bangerscript-lang
v0.1.0
Published
Beginner-first scripting language
Downloads
95
Readme
BangerScript
BangerScript is a beginner-first scripting language aimed at having fun while coding.
Features
- Simple Syntax: No semicolons, easy variable declarations.
- Fun Keywords:
bfor variables,eepyfor sleep,logfor printing. - Built-in VS Code Support: Syntax highlighting and snippets included!
Installation
npm install -g bangerscriptUsage
Create a file named hello.bs:
b name = "World"
log("Hello " + name)
eepy(1)
log("Bye!")Run it:
bs hello.bs