Skip to content

Commit 23537f5

Browse files
authored
Merge pull request #3 from khanna98/master
For Loop
2 parents af8953e + 3241233 commit 23537f5

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

03-Loops/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Loops
2+
3+
This is a repo where you can create and practice loops in various languages.
4+
5+
The following language code has been added to far:
6+
1. bash

03-Loops/for-loop.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/bash
2+
3+
echo "Lets begin with the loops"
4+
5+
for i in 1 2 3 4 5 6 7 8 9 10
6+
do
7+
echo $i
8+
done
9+
exit

0 commit comments

Comments
 (0)