Skip to content

Releases: QuantumLogicsLabs/Quantum-Language

QuantumCore

27 Mar 00:10

Choose a tag to compare

v2.0.0

tests

Quantum v1.0.0

27 Feb 22:59

Choose a tag to compare

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.exe on Windows, quantum on Linux/macOS)
  • Example programs included for language features and cybersecurity demos

CLI

  • quantum → start REPL
  • quantum <file.sa> → run script
  • quantum --check <file.sa> → syntax check
  • quantum --version → show version

Notes

  • Version: v1.0.0
  • Reserved cybersecurity keywords (scan, payload, encrypt, decrypt, hash) are recognized for future expansion.