\frametitle {Gruppe: Quellsprache (Beispiel)}\begin {verbatim} fun fib[a] if a < 2 @1 end @(call fib[a-1] + call fib[a-2]) end fun main[] sum = 0 i = 1 while i <= 10 sum = sum + call fib[i] i = i + 1 end @sum end \end{verbatim}