#!/bin/sh
# filename: myvar

myvar="Hi there"

echo $myvar
echo "$myvar"     # same as $myvar
echo '$myvar'     # no substitution takes place
echo \$myvar      # escape the special meaning of $

echo Enter some text
read myvar

echo '$myvar' now equals $myvar
exit 0
