aboutsummaryrefslogtreecommitdiff
path: root/src/input/file.input.pamphlet
blob: fab45daf40c3b5f7e06cacdc224f0b7d2c8a4b24 (plain)
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
\documentclass{article}
\usepackage{axiom}
\begin{document}
\title{\$SPAD/src/input FILE.input}
\author{The Axiom Team}
\maketitle
\begin{abstract}
\end{abstract}
\eject
\tableofcontents
\eject
<<*>>=

-- Input generated from FileXmpPage
)clear all

ifile:File List Integer:=open("/tmp/jazz1","output")
write!(ifile, [-1,2,3])
write!(ifile, [10,-10,0,111])
write!(ifile, [7])
reopen!(ifile, "input")
read! ifile
read! ifile
readIfCan! ifile
readIfCan! ifile
iomode ifile
name ifile
close! ifile
)system rm /tmp/jazz1
@
\eject
\begin{thebibliography}{99}
\bibitem{1} nothing
\end{thebibliography}
\end{document}