glimlang
v0.0.2
Published
[Future Scope - Do not use until v1.0.0] A clean, friendly, and statically-readable scripting language designed for clear syntax, rich built-ins, and fast prototyping.
Maintainers
Readme
glimlang
A clean, friendly, and statically-readable scripting language designed for clear syntax, rich built-ins, and fast prototyping.
Official package part of the GlimLang ecosystem.
[!CAUTION] ⚠️ Important Notice: This package is not ready for production use. Please do not use until version 1.0.0. This is a future scope which is written in this package. We are working on it, and soon you can use it!
For details, documentation, and progress updates, visit the official website at glimlang.org.
🚀 Features
- GlimLang Native: Designed specifically for high-efficiency GlimLang environments.
- ES Modules First: Fully compatible with the modern ES Modules standard.
- JSDoc Type Safety: Rich JSDoc documentation providing excellent IDE completion.
- Scope Blueprint: Contains initial model interfaces and function schemas for development.
📦 Installation
npm install glimlang🛠️ Quickstart (Initial Blueprint)
// FizzBuzz in GlimLang syntax
for num in range(1, 16) {
if num % 15 == 0 {
print("FizzBuzz")
} else {
print(num)
}
}🌐 Community & Resources
- Official Website: glimlang.org
- GitHub Repository: github.com/glimlang/glimlang
- Bug Tracker: github.com/glimlang/glimlang/issues
📄 License
MIT © GlimLang Team & GlimLang.org
