Skip to content
Snippets Groups Projects
Commit 66e87ae1 authored by sven.panne@aedion.de's avatar sven.panne@aedion.de
Browse files

[project @ 2000-04-19 09:59:55 by panne]

Corrected typo in nfib example (/ => `div`).
Added description for hp2ps's -c/-y flags.
parent 5abb1668
No related branches found
No related tags found
No related merge requests found
...@@ -131,7 +131,7 @@ MAIN MAIN 0 0.0 0.0 0 1 ...@@ -131,7 +131,7 @@ MAIN MAIN 0 0.0 0.0 0 1
<programlisting> <programlisting>
main = print (f 25 + g 25) main = print (f 25 + g 25)
f n = nfib n f n = nfib n
g n = nfib (n/2) g n = nfib (n `div` 2)
nfib n = if n < 2 then 1 else nfib (n-1) + nfib (n-2) nfib n = if n < 2 then 1 else nfib (n-1) + nfib (n-2)
</programlisting> </programlisting>
...@@ -756,6 +756,20 @@ hp2ps [flags] [&lt;file&gt;[.hp]] ...@@ -756,6 +756,20 @@ hp2ps [flags] [&lt;file&gt;[.hp]]
</listItem> </listItem>
</varListEntry> </varListEntry>
<varListEntry>
<term><Option>-c</Option></Term>
<listItem>
<para>Generate colour output.</para>
</listItem>
</varListEntry>
<varListEntry>
<term><Option>-y</Option></Term>
<listItem>
<para>Ignore marks.</para>
</listItem>
</varListEntry>
<varListEntry> <varListEntry>
<term><Option>-?</Option></Term> <term><Option>-?</Option></Term>
<listItem> <listItem>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment