Running Unicon
Unicon is invoked to compile and run either from the command line or from within an IDE. Unicon source files end in the.icn
extension, while Unicon object files end in the.u
extension. Here are some example invocations of the Unicon translator:
unicon mainname [ filename(s) ]
Compile and link
mainname.icn
and other filenames to form an executable namedmainname.exe
on Windows or justmainname
on most other platforms.unicon -o exename [ filename(s) ]
Compile and link an executable named
exename
, or on Windows,exename.exe
.unicon -c filename(s)
Compile
.icn
files into.u
files but do not link them.unicon -u filename(s)
Warn about undeclared variables.
unicon -version &...