1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
| | % OLANG(1)
% olang mantainers
% Feb 2024
# NAME
olang - O Programming Language compiler
# SYNOPSIS
**olang**
source_file
[**----dump-tokens**]
[**--o** output_file [**----save-temps**]]
# DESCRIPTION
**olang** is the offical O programming language compiler, it is also a tool that
contains utilities to help the language development.
# GENERAL OPTIONS
**----dump-tokens**
: Display lexical tokens given a soruce.0 code.
**--o <file>**
: Compile program into a binary file
**----save-temps**
: Keep temp files used to compile program
|