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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
| | \input texinfo
@settitle Olang Reference Manual 0.0.1
@copying
This manual documents Olang.
Copyright @copyright{} 2024 olang mantainers.
@end copying
@titlepage
@title Olang Reference Manual
@page
@vskip 0pt plus 1fill
@insertcopying
@end titlepage
@contents
@node Top
@top Olang Reference Manual
This document describes O programming language (Olang). A simple system
programming language.
@menu
* Introduction::
* Installation::
* Getting Started::
* Language Specification::
* Contribution Guide::
@end menu
@include introduction.texi
@include installation.texi
@include getting-started.texi
@include specification.texi
@include contribution-guide.texi
@bye
|