Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
francoisthire committed Oct 23, 2018
1 parent 55e54f8 commit 0dbe1c9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions slides/intro-prog.tex
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ \section{Notions}
Si ton age est supérieur ou égal à 18 ans, alors tu es majeur !
\begin{lstlisting}[language=python]
age = 23\\
if age $>=$ 18:\\
if age >= 18:\\
... print("Tu es majeur")
\end{lstlisting}

Expand All @@ -94,7 +94,7 @@ \section{Notions}
\medbreak
\begin{lstlisting}[language=python]
age = 14
if age $>$ 11 $\&\&$ age $<$ 18:
if age > 11 && age < 18:
... print("Tu es adolescent ! ")
\end{lstlisting}

Expand All @@ -111,7 +111,7 @@ \section{Notions}
\medbreak
\begin{lstlisting}[language=python]
age = 23
if age $>=$ 18:
if age >= 18:
... print("Tu es majeur")
else:
... print("Tu es mineur")
Expand All @@ -126,7 +126,7 @@ \section{Notions}
\begin{lstlisting}[language=python]
for age in range(5,26):
... print(age)
... if age $>$ 18:
... if age > 18:
... ... print(" = majeur \n")
... else:
... ... print(" = mineur \n")
Expand Down

0 comments on commit 0dbe1c9

Please sign in to comment.