Bash Scripting - Variables
What will be the output of this bash script?
var="world"
echo "Hello $var!"
echo "Hello ${var}!"
echo "Hello $var123"
echo "Hello ${var}123"