pear-lang
v0.0.3
Published
Pear scripting language runtime and CLI
Readme
Pear
Pear is a scripting language designed to be clear, lightweight, and practical for everyday scripting tasks.
If you’ve used JavaScript or Lua, the syntax will feel familiar, while aiming to stay more focused and easier to work with for small tools, bots, and automation.
Current capabilities
Pear currently provides:
letvariables- Numbers and strings
if / elseconditionalswhileloops- Functions with
return - A built-in
print(...)function for output
The interpreter runs on top of Node.js and is exposed through a global CLI command.
Installation
Prerequisite: Node.js installed on your system.
Install Pear globally via npm:
npm install -g pear-lang