Skip to content

Commit

Permalink
Merge pull request #822 from jdesalle/patch-4
Browse files Browse the repository at this point in the history
[LINGI1123] Fix "triple 0" bug in the code of exercise 1.3.1
  • Loading branch information
Peiffap authored May 25, 2020
2 parents fc8d367 + b4ae5ef commit 8883a26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/q6/calcu-INGI1123/exercises/calcu_tp1.tex
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,9 @@ \subsection{} % Exercise 3
i = 0
println(i)
while true
i+=1
println(i)
println(-i)
i += 1
end
end
\end{minted}
Expand Down

0 comments on commit 8883a26

Please sign in to comment.