#!/bin/sh

if [ -z $VARIABLE ] ; then
	echo "double quoted text" # some comment
	echo 'single quoted text' # TODO tag
	echo `command substitution`
fi