hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

hare-run.1.scd (729B)


      1 hare-run(1)
      2 
      3 # NAME
      4 
      5 hare run - compile and run a Hare program or module
      6 
      7 # SYNOPSIS
      8 
      9 *hare run* [-hqv]++
     10 	[-a _arch_]++
     11 	[-D _ident[:type]=value_]++
     12 	[-j _jobs_]++
     13 	[-L _libdir_]++
     14 	[-l _libname_]++
     15 	[-R]++
     16 	[-T _tagset_]++
     17 	[_path_ [_args_...]]
     18 
     19 # DESCRIPTION
     20 
     21 *hare run* compiles and runs a Hare program or module. The _path_ argument is a
     22 path to a Hare source file or to a directory which contains a Hare module (see
     23 *hare-module*(5)). If no path is given, the Hare module contained in the current
     24 working directory is run. The remaining _args_ are passed to the compiled
     25 program.
     26 
     27 # OPTIONS
     28 
     29 Refer to *hare-build*(1).
     30 
     31 # ENVIRONMENT
     32 
     33 Refer to *hare-build*(1).
     34 
     35 # SEE ALSO
     36 
     37 *hare-build*(1), *hare-test*(1), *hare-module*(5)