blob: 1d1c22b2eb01a7c9105d5e048ff74d73a4940e04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
usage: Language [-h] [sourcefile] [-o output path] [-c] [-pc] [-e]
positional arguments:
file path to a FORTRAN-like file to compile.
if ommitted, go to interactive mode.
named arguments:
-o --out PATH path and name to produce the output. do
not include a file extension. if preceeding
directories do not exist, they will be
created.
flags:
-h --help print this message and exit.
-c --keep-c-file the c program produced in the compilation
process will not be deleted.
-pc --print-c the c program will be printed to stdout
-e --execute the produced binary will be executed as soon
as compilation is finished.
|