OS | Status |
---|---|
Windows | ❓ |
Mac OS | ❓ |
Linux | ✅ (should work...) |
❓ -> Not tested yet | |
✅ > Works |
- Easy syntax.
- Easy to learn.
- Offers an interactive REPL for running small piece of code and testing (single line only).
- No strict typing required (Dynamically typed language)
- [PRODUCTION] Boron requires
pkg
for building an executable - [DEV] Boron requires
@types/node @types/prompt-sync
andprompt-sync
for running with NodeJS. Runyarn install
to install them.
Plugin | README |
---|---|
boron.nvim | Syntax Highlighter for Vim |
Read the official docs here on Github Wiki
.
├── examples/
│ └── Examples.bor
├── src/
│ ├── frontend/
│ │ ├── utils/
│ │ │ ├── Token.ts
│ │ │ ├── Type.ts
│ │ │ ├── color.ts
│ │ │ └── helper.ts
│ │ ├── ast.ts
│ │ ├── lexer.ts
│ │ └── parser.ts
│ ├── old/
│ │ └── # old stuff here
│ ├── runtime/
│ │ ├── evals/
│ │ │ └── All the evaluate expressions and statements here, it's a long list
│ │ ├── env.ts
│ │ ├── interpreter.ts
│ │ └── value.ts
│ └── index.ts
└── test/
└── main.bor
MIT