Add c, sh, bash, python, and go

This commit is contained in:
2020-11-26 21:14:28 -06:00
parent d1f852f46d
commit 7ecf637b86
7 changed files with 856 additions and 0 deletions

5
sh.sh Executable file
View File

@ -0,0 +1,5 @@
#!/bin/sh
for i in $(seq 0 5); do
echo "Hello world, $i"
done