The hmatrix
command is your gateway to executing .hm
files or entering interactive sessions. It also supports various flags for enhanced functionality.
hmatrix <path> <args> # Run a file with arguments
hmatrix <path> # Run a file
hmatrix -continue <path> # Run a file and enter interactive mode
hmatrix # Start an empty interactive session
hmatrix -time <path> # Run a file and display execution time
hmatrix -lib:<path> <file> # Attach a library folder and run a file
hmatrix -setup:<path> # Setup a HyperMatrix project at the specified path
hmatrix -settings:<path> <file> # Attach settings file for the current run (lexer update required)
hmatrix -resource:<path> <file> # Attach resources for the current run
hmatrix -help # Display grammar documentation and exit
hmatrix -version # Show version information (highest priority, overrides all other flags)
hmatrix -grammar # Retrieve the grammar file (priority 4)
hmatrix -setup # Setup a HyperMatrix project in the current directory (priority 3)
- New priority-based command-line options:
-version
→ Displays language version details (priority 1, overrides all other flags).-help
→ Shows basic usage information (priority 2).-setup
→ Initializes a project in the current or specified directory (priority 3).-grammar
→ Retrieves the full grammar file (priority 4).
- Interactive Mode Enhancements:
run
without arguments repeats the last executed file.- If no previous file exists, it displays proper usage guidance.
hmatrix hello-world.hm
hmatrix hello-world
hmatrix hello-world.hm bold "O K"
hmatrix -continue hello-world
hmatrix
hmatrix -time hello-world.hm
hmatrix -lib:/path/to/lib hello-world.hm
hmatrix -setup
hmatrix -setup:/path/to/project
hmatrix -settings:/path/to/settings -resource:/path/to/resources hello-world.hm
hmatrix -help
hmatrix -version
hmatrix -grammar