#!/bin/bash
# your code goes here
echo ${foo-bar}
echo ${foo:-bar}
foo="FOO"
echo ${foo-bar}
echo ${foo:-bar}
foo=""
echo ${foo-bar}
echo ${foo:-bar}
