ABT (Absinto) is a custom programming language designed for intention-oriented and semantic programming, allowing developers to write code closer to natural language while still being compiled and executed.
🚀 Features
Intention-based syntax (semantic operators like natural language comparisons)
Traditional programming syntax support (<=, >=, ==, etc.)
Keywords: let, set, say, while
Indentation-based block structure
Interpreter implemented in Python
VS Code syntax highlighting support
✨ Example Code
let count = 1
while count <= 5:
say count
set count = count + 1