2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-26 06:48:04 +02:00

Logische Operatoren hinzugefügt

This commit is contained in:
Martin Thoma 2014-03-31 13:31:31 +02:00
parent 19c2ef6eec
commit f9a5e819c1
7 changed files with 59 additions and 4 deletions

View file

@ -48,6 +48,18 @@ Eine Besonderheit sind sog. \textit{Constrianed types}\xindex{types!constrained}
\inputminted[numbersep=5pt, tabsize=4]{scala}{scripts/x10/constrained-type-example.x10}
\subsection{Logische Operatoren}
\begin{table}[h]
\centering
\begin{tabular}{CCCC}
UND & ODER & Wahr & Falsch \\ \hline\hline
\&\& & || & true & false \\[4ex]
GLEICH & UNGLEICH & NICHT & ~ \\ \hline\hline
== & != & ! & ~ \\
\end{tabular}
\caption{Logische Operatoren in X10}\xindex{Logische Operatoren!X10}
\end{table}
\subsection{Closures}\xindex{closure}%
Closres werden unterstützt: