removed p tags

git-svn-id: svn+ssh://atelier.inf.usi.ch/home/bevilj/group-1@201 a672b425-5310-4d7a-af5c-997e18724b81
This commit is contained in:
omenem 2018-11-15 13:25:55 +00:00
parent a57150a732
commit 98d25fd798
3 changed files with 2 additions and 7 deletions

View file

@ -7,7 +7,6 @@ author: Matteo Omenetti
title: For Loop
---
<p>
<!-- Introduction -->
The second type of loops are for loops.
They follow this sintax:
@ -63,5 +62,3 @@ You can even icrement the numerical value by step of two: <code> {0..10..2} </co
This piece of code means every natural number between 0 and 10 with a step of two,
0 2 4 6... 10.
<!-- End of Explenation of Numerical Range -->
</p>

View file

@ -6,8 +6,8 @@ tags: if else script scripting read
author: Matteo Omenetti
title: If Statement
---
<!-- Introduction -->
<p>
If statements allow us to make decisions in our Bash scripts. They allow us to whether run or not a piece
of code based on a condition that we set. <br>
@ -137,4 +137,3 @@ Therefore the output of this piece of code is:
<pre>
You chose 150.
</pre>
</p>

View file

@ -6,7 +6,7 @@ tags: loop while do script scripting read
author: Matteo Omenetti
title: While Loop
---
<p>
<!-- Introduction -->
Loops are an important concept in programming and therefore also in scripting.
Thanks to loops you are able to repeat an instruction
@ -134,4 +134,3 @@ This file has 3 colums, <code> first_name last_name phone </code>, separated by
blank space (or a tab).
This piece of code only prints out the second column.
<!-- End of Read -->
</p>