Releases: QuantumLogicsLabs/Quantum-Language
Releases · QuantumLogicsLabs/Quantum-Language
QuantumCore
Quantum v1.0.0
Quantum Language v1.0.0
Quantum Language is now officially released: a dynamically typed .sa scripting language built in C++17 with a clean lexer → parser → AST → interpreter pipeline.
Highlights
- Tree-walk interpreter with interactive REPL and script execution (
quantum file.sa) - Core language features: variables, constants, functions, lambdas, closures, conditionals, loops, arrays, dictionaries, and string methods
- Rich built-ins for math, type conversion, collections, randomness, assertions, and timing
- Cybersecurity-oriented primitives available now:
xor_bytes,to_hex,from_hex,rot13,base64_encode, plus bitwise operators - Syntax checking mode with
--check - Cross-platform build support via CMake (
quantum.exeon Windows,quantumon Linux/macOS) - Example programs included for language features and cybersecurity demos
CLI
quantum→ start REPLquantum <file.sa>→ run scriptquantum --check <file.sa>→ syntax checkquantum --version→ show version
Notes
- Version:
v1.0.0 - Reserved cybersecurity keywords (
scan,payload,encrypt,decrypt,hash) are recognized for future expansion.