Skip to content

Latest commit

 

History

History
104 lines (83 loc) · 2.86 KB

commands.md

File metadata and controls

104 lines (83 loc) · 2.86 KB

Commands

HMatrix Command

The hmatrix command is your gateway to executing .hm files or entering interactive sessions. It also supports various flags for enhanced functionality.


Syntax

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)

Shell Enhancements

  • 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.

Examples

Run hello-world.hm file

hmatrix hello-world.hm

Run hello-world.hm without specifying the .hm extension

hmatrix hello-world

Run hello-world.hm with arguments bold and "O K"

hmatrix hello-world.hm bold "O K"

Run hello-world.hm in interactive mode

hmatrix -continue hello-world

Start an empty interactive session

hmatrix

Display execution time after running hello-world.hm

hmatrix -time hello-world.hm

Attach a library folder and run hello-world.hm

hmatrix -lib:/path/to/lib hello-world.hm

Setup a HyperMatrix project in the current folder

hmatrix -setup

Setup a HyperMatrix project at a specified path

hmatrix -setup:/path/to/project

Attach settings and resources for the current run

hmatrix -settings:/path/to/settings -resource:/path/to/resources hello-world.hm

Display grammar documentation

hmatrix -help

Show the current version of HyperMatrix

hmatrix -version

Retrieve the grammar file

hmatrix -grammar