# HG changeset patch # User Christopher Burns # Date 1277793624 18000 # Node ID 99e1af343b042cc8caf6edd0162ccca058ce7ca8 # Parent af45c8da1d5da67c3b10b7f4bbfb9206ad00d383 DOC: More slides on whitespace. diff -r af45c8da1d5d -r 99e1af343b04 day2/session4.tex --- a/day2/session4.tex Tue Jun 29 01:17:52 2010 -0500 +++ b/day2/session4.tex Tue Jun 29 01:40:24 2010 -0500 @@ -289,6 +289,31 @@ \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