mattonem / SmalltalkEnv

LaTeX environment for Smalltalk.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Smalltalk environment for listings in LaTeX

Smalltalk code highlighting in LaTeX documents

How to use?

Just add the following line to your file:

\input{smalltalkEnv}

Then you can use:

\begin{lstlisting}[language=Smalltalk]
Collection >> adaptToCollection: rcvr andSend: selector
    "If I am involved in arithmetic with another Collection, return a Collection of
    the results of each element combined with the scalar in that expression."

    (rcvr isSequenceable and: [ self isSequenceable ]) ifFalse:
        [self error: 'Only sequenceable collections may be combined arithmetically'].
    ^ rcvr with: self collect:
        [:rcvrElement :myElement | rcvrElement perform: selector with: myElement]
\end{lstlisting}

About

LaTeX environment for Smalltalk.

License:MIT License


Languages

Language:TeX 100.0%