aboutsummaryrefslogtreecommitdiff
path: root/src/input/cclass.input.pamphlet
blob: b5e6ca7471952a5a177ca88e32548b31821f8d29 (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
36
37
38
\documentclass{article}
\usepackage{axiom}
\begin{document}
\title{\$SPAD/src/input CCLASS.input}
\author{The Axiom Team}
\maketitle
\begin{abstract}
\end{abstract}
\eject
\tableofcontents
\eject
<<*>>=

-- Input generated from CharacterClassXmpPage
)clear all

cl1 := charClass [char "a", char "e", char "i", char "o", char "u", char "y"]
cl2 := charClass "bcdfghjklmnpqrstvwxyz"
digit()
hexDigit()
upperCase()
lowerCase()
alphabetic()
alphanumeric()
member?(char "a", cl1)
member?(char "a", cl2)
intersect(cl1, cl2)
union(cl1,cl2)
difference(cl1,cl2)
intersect(complement(cl1),cl2)
insert!(char "a", cl2)
remove!(char "b", cl2)
@
\eject
\begin{thebibliography}{99}
\bibitem{1} nothing
\end{thebibliography}
\end{document}