add notes 04-yaml, move homework 4.1 to subdirectory

This commit is contained in:
2022-04-12 10:33:57 +07:00
parent 744437c4d6
commit 10cd187006
11 changed files with 40 additions and 5 deletions

View File

@@ -0,0 +1,9 @@
#!/usr/bin/env bash
a=1
b=2
c=a+b
d=$a+$b
e=$(($a+$b))
echo a=$a b=$b c=$c d=$d e=$e