9 lines
95 B
Bash
9 lines
95 B
Bash
#!/bin/bash
|
|
|
|
tal=0
|
|
|
|
while [ $tal -lt 10 ]; do
|
|
echo "Talet är $tal"
|
|
let tal=tal+1
|
|
done
|