========================================================================
           THE NYX SOVEREIGN SYSTEMS PROGRAMMING LANGUAGE
                  Version: v0.22.0 (Official Release)
           Crafted by Simeon Bala | Hosted on 9jaonCloud
========================================================================

HOW TO INSTALL & USE NYX IN 3 EASY STEPS:

[ OPTION A: AUTOMATIC INSTALLER ]
  * WINDOWS: Double-click 'install.bat' (Runs in 5 seconds)
  * LINUX / MAC: Open terminal, run: bash install.sh

[ OPTION B: MANUAL SETUP ]
  1. Extract this entire zip folder to:
     - Windows: C:\nyx
     - Linux/Mac: ~/.nyx

  2. Add the 'bin' folder to your system PATH:
     - Windows: Add 'C:\nyx\bin' to Environment Variables -> Path
     - Linux/Mac: Add 'export PATH="$HOME/.nyx/bin:$PATH"' to ~/.bashrc or ~/.zshrc

  3. Verify installation:
     Open a new terminal and type:
       nyx --version

========================================================================
CLI COMMAND REFERENCE:
========================================================================
  nyx run <file.nyx>          Compile and execute a Nyx program instantly
  nyx build <file.nyx> -o <bin> Produce an optimized standalone native binary
  nyx check <file.nyx>        Run formal region safety & syntax check
  nyx test                    Run all test suites in current directory
  nyx repl                    Launch interactive interactive Nyx shell
  nypm install <pkg>          Install package from decentralized registry

TRY THE EXAMPLES:
  nyx run examples/hello.nyx
  nyx run examples/concurrency.nyx
  nyx run examples/formal.nyx

DOCUMENTATION & ACADEMY:
  * Learn Nyx: https://nyx.9jaoncloud.com.ng/docs/learn/index.html
  * Documentation: https://nyx.9jaoncloud.com.ng/docs/index.html
  * Support & Feedback: nyx@9jaoncloud.com.ng
========================================================================
