day1/Session-1.vrb
changeset 63 f5eac04a00fe
parent 60 edfe20d6733c
child 64 333092b68926
--- a/day1/Session-1.vrb	Thu Oct 08 15:42:43 2009 +0530
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,14 +0,0 @@
-\frametitle {Basic looping}
-  \begin{lstlisting}
-# Fibonacci series:
-# the sum of two elements
-# defines the next
-a, b = 0, 1
-while b < 10:
-    print b,
-    a, b = b, a + b
-
-\end{lstlisting}
-\typ{1 1 2 3 5 8}\\
-\alert{Recall it is easy to write infinite loops with \kwrd{while}}
-  \inctime{20}