1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-17 22:51:16 +02:00

Update 102-loops.md (#6071)

bug in the code
This commit is contained in:
Karim Safan
2024-07-07 16:02:50 +03:00
committed by GitHub
parent 6cd18458db
commit 36b42dfaa2

View File

@@ -13,7 +13,7 @@ Here is a simple sample for loop in bash/shell:
```bash ```bash
for i in 1 2 3 for i in 1 2 3
do do
echo $i echo "$i"
done done
``` ```
This will output: This will output: