From 7489ee72dc1d08322d05b2ef84a4296dfbdfb6c5 Mon Sep 17 00:00:00 2001 From: Christopher Burns Date: Tue, 29 Jun 2010 01:40:24 -0500 Subject: DOC: More slides on whitespace. --HG-- branch : scipy2010 --- day2/session4.tex | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/day2/session4.tex b/day2/session4.tex index a1e67de..21dbdcb 100644 --- a/day2/session4.tex +++ b/day2/session4.tex @@ -289,6 +289,31 @@ if __name__ == '__main__': \end{itemize} \end{frame} +\begin{frame}[fragile] + \frametitle{Whitespace} + Whitespace... it's not just for compilers! + \begin{lstlisting} + +def myfanfunc(somevar,another,yetmore): + if a%b==0:return b + return myfanfunc(b,a%b) + + \end{lstlisting} +\end{frame} + +\begin{frame}[fragile] + \frametitle{Whitespace} + The compiler doesn't care! Humans do! + \begin{lstlisting} + +def my_fan_func(some_var, another, yet_more): + if a % b == 0: + return b + return my_fan_func(b, a % b) + + \end{lstlisting} +\end{frame} + \begin{frame}{Comments} \begin{itemize} \item No comments better than contradicting comments -- cgit