mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-25 22:01:33 +00:00
Small changes to the QFCC book.
This commit is contained in:
parent
2842f4d4f1
commit
31f5bb5d96
1 changed files with 23 additions and 13 deletions
|
@ -1,5 +1,5 @@
|
||||||
#LyX 1.2 created this file. For more info see http://www.lyx.org/
|
#LyX 1.3 created this file. For more info see http://www.lyx.org/
|
||||||
\lyxformat 220
|
\lyxformat 221
|
||||||
\textclass scrbook
|
\textclass scrbook
|
||||||
\language american
|
\language american
|
||||||
\inputencoding latin1
|
\inputencoding latin1
|
||||||
|
@ -10,11 +10,15 @@
|
||||||
\spacing single
|
\spacing single
|
||||||
\papersize letterpaper
|
\papersize letterpaper
|
||||||
\paperpackage a4
|
\paperpackage a4
|
||||||
\use_geometry 0
|
\use_geometry 1
|
||||||
\use_amsmath 0
|
\use_amsmath 0
|
||||||
\use_natbib 0
|
\use_natbib 0
|
||||||
\use_numerical_citations 0
|
\use_numerical_citations 0
|
||||||
\paperorientation portrait
|
\paperorientation portrait
|
||||||
|
\leftmargin 1in
|
||||||
|
\topmargin 1in
|
||||||
|
\rightmargin 0.5in
|
||||||
|
\bottommargin 1in
|
||||||
\secnumdepth 2
|
\secnumdepth 2
|
||||||
\tocdepth 2
|
\tocdepth 2
|
||||||
\paragraph_separation skip
|
\paragraph_separation skip
|
||||||
|
@ -31,7 +35,7 @@ The Ruamoko Programming Language
|
||||||
\layout Author
|
\layout Author
|
||||||
|
|
||||||
Bill Currie
|
Bill Currie
|
||||||
\begin_inset Formula $\bullet $
|
\begin_inset Formula $\bullet$
|
||||||
\end_inset
|
\end_inset
|
||||||
|
|
||||||
Jeff Teunissen
|
Jeff Teunissen
|
||||||
|
@ -256,6 +260,7 @@ collapsed true
|
||||||
\line_top \line_bottom
|
\line_top \line_bottom
|
||||||
|
|
||||||
\begin_inset Include \verbatiminput{hello.r}
|
\begin_inset Include \verbatiminput{hello.r}
|
||||||
|
preview false
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
|
||||||
|
@ -316,6 +321,7 @@ collapsed true
|
||||||
|
|
||||||
|
|
||||||
\begin_inset Include \verbatiminput{qfcc-output.txt}
|
\begin_inset Include \verbatiminput{qfcc-output.txt}
|
||||||
|
preview false
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
|
||||||
|
@ -609,6 +615,7 @@ collapsed true
|
||||||
\line_top \line_bottom
|
\line_top \line_bottom
|
||||||
|
|
||||||
\begin_inset Include \verbatiminput{hello2.r}
|
\begin_inset Include \verbatiminput{hello2.r}
|
||||||
|
preview false
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
|
||||||
|
@ -706,6 +713,7 @@ collapsed true
|
||||||
\line_top \line_bottom
|
\line_top \line_bottom
|
||||||
|
|
||||||
\begin_inset Include \verbatiminput{radians.r}
|
\begin_inset Include \verbatiminput{radians.r}
|
||||||
|
preview false
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
|
||||||
|
@ -726,7 +734,7 @@ In figure
|
||||||
\end_inset
|
\end_inset
|
||||||
|
|
||||||
, we find a simple program uses the formula
|
, we find a simple program uses the formula
|
||||||
\begin_inset Formula $R=D\, \times \, (\frac{\pi }{180})$
|
\begin_inset Formula $R=D\,\times\,(\frac{\pi}{180})$
|
||||||
\end_inset
|
\end_inset
|
||||||
|
|
||||||
to print a table of various angles in both their degrees and radian equivalents.
|
to print a table of various angles in both their degrees and radian equivalents.
|
||||||
|
@ -1020,7 +1028,7 @@ while
|
||||||
while (degrees <= upper) {
|
while (degrees <= upper) {
|
||||||
\newline
|
\newline
|
||||||
|
|
||||||
\begin_inset Formula $\vdots $
|
\begin_inset Formula $\vdots$
|
||||||
\end_inset
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
@ -1241,11 +1249,11 @@ An integer constant like
|
||||||
\layout Standard
|
\layout Standard
|
||||||
|
|
||||||
The value of an integer can be specified in octal (base 8, 0
|
The value of an integer can be specified in octal (base 8, 0
|
||||||
\begin_inset Formula $\ldots $
|
\begin_inset Formula $\ldots$
|
||||||
\end_inset
|
\end_inset
|
||||||
|
|
||||||
7) or hexadecimal (base 16, 0
|
7) or hexadecimal (base 16, 0
|
||||||
\begin_inset Formula $\ldots $
|
\begin_inset Formula $\ldots$
|
||||||
\end_inset
|
\end_inset
|
||||||
|
|
||||||
F, hereafter called
|
F, hereafter called
|
||||||
|
@ -1889,7 +1897,8 @@ Variable-argument functions
|
||||||
|
|
||||||
Typed parameters preceding the ellipsis are allowed, e.g.:
|
Typed parameters preceding the ellipsis are allowed, e.g.:
|
||||||
\family typewriter
|
\family typewriter
|
||||||
void (string fmt, ...) printf;
|
void (string fmt, \SpecialChar \ldots{}
|
||||||
|
) printf;
|
||||||
\layout Standard
|
\layout Standard
|
||||||
|
|
||||||
More importantly, it is now possible to write vararg functions in QC.
|
More importantly, it is now possible to write vararg functions in QC.
|
||||||
|
@ -1903,7 +1912,8 @@ More importantly, it is now possible to write vararg functions in QC.
|
||||||
\family default
|
\family default
|
||||||
is an array of vectors representing the parameters passed through
|
is an array of vectors representing the parameters passed through
|
||||||
\family typewriter
|
\family typewriter
|
||||||
...
|
\SpecialChar \ldots{}
|
||||||
|
|
||||||
\family default
|
\family default
|
||||||
.
|
.
|
||||||
\layout Standard
|
\layout Standard
|
||||||
|
@ -2044,7 +2054,7 @@ think
|
||||||
\family default
|
\family default
|
||||||
Number of parameters passed through
|
Number of parameters passed through
|
||||||
\family typewriter
|
\family typewriter
|
||||||
...
|
\SpecialChar \ldots{}
|
||||||
|
|
||||||
\family default
|
\family default
|
||||||
in vararg functions.
|
in vararg functions.
|
||||||
|
@ -2058,7 +2068,7 @@ think
|
||||||
\family default
|
\family default
|
||||||
Array of vectors representing the parameters passed through
|
Array of vectors representing the parameters passed through
|
||||||
\family typewriter
|
\family typewriter
|
||||||
...
|
\SpecialChar \ldots{}
|
||||||
|
|
||||||
\family default
|
\family default
|
||||||
in vararg functions.
|
in vararg functions.
|
||||||
|
@ -2085,7 +2095,7 @@ while
|
||||||
\family typewriter
|
\family typewriter
|
||||||
do
|
do
|
||||||
\family default
|
\family default
|
||||||
...
|
\SpecialChar \ldots{}
|
||||||
|
|
||||||
\family typewriter
|
\family typewriter
|
||||||
while
|
while
|
||||||
|
|
Loading…
Reference in a new issue