Welcome to HyperMatrix, a high-level programming language designed to combine simplicity, flexibility, and innovation. This guide will help you install HyperMatrix and learn how to use its commands effectively.
- Go to the Releases section of the HyperMatrix repository.
- Download the appropriate installer for your operating system.
- Run the downloaded installer file.
- Follow the on-screen instructions to complete the installation.
Once installed, you can use the hmatrix
command in your terminal.
The hmatrix
command is the main way to execute HyperMatrix programs and access its interactive features. Below are the different ways to use it:
Execute a HyperMatrix file with or without arguments:
hmatrix <path-to-file> <args>
Example:
hmatrix hello-world.hm
Start an interactive session to experiment with code:
hmatrix
This opens an empty interactive session where you can:
- Define variables.
- Execute code snippets.
- Test small programs.
Run a file and stay in interactive mode after it finishes execution:
hmatrix -continue <path-to-file>
While in continue mode, you can:
- Access variables defined in the file.
- Execute additional code.
- Run other files using the
run
command.
Example:
hmatrix -continue demo-file.hm
After the file executes, you can:
> println(myVar); // Access a variable defined in the file
> run another-file.hm; // Run another file
Initialize a new HyperMatrix project in the current or specified directory:
hmatrix -setup
hmatrix -setup:<path>
This creates a project structure and exits after setup is complete.
Example:
hmatrix -setup:/path/to/project
Attach a library folder for the current run:
hmatrix -lib:<path> <file>
Example:
hmatrix -lib:/path/to/lib hello-world.hm
Attach a settings file for the current run (requires lexer updates for full functionality):
hmatrix -settings:<path> <file>
Attach resource files for the current run:
hmatrix -resource:<path> <file>
Example:
hmatrix -resource:/path/to/resources hello-world.hm
Use the -help
, -grammar
, and -version
flags for reference documentation:
-help
→ Displays a basic usage guide.-grammar
→ Retrieves the full grammar file.-version
→ Shows version details (highest priority, overrides all other flags).
Example:
hmatrix -help
hmatrix -grammar
hmatrix -version
-
Create a file named
hello-world.hm
:println("Hello, World!");
-
Run the file using the
hmatrix
command:hmatrix hello-world.hm
-
Expected output:
Hello, World!
HyperMatrix comes with several example programs to demonstrate its features. You can find them in the examples/
directory:
hello-world.hm
: A basic Hello World program.paint-heart.hm
: Drawing a heart in Windows 11 Paint.
Run these examples using:
hmatrix <path-to-example>
If you encounter issues or have questions:
- Refer to the documentation files in the
docs/
directory. - Open an issue on the GitHub repository.
Thank you for using HyperMatrix! We’re excited to see what you create.