#!/bin/bash

# demoing clicker question
#
# by: Sharon Tuttle
# last modified: 2022-09-12

# to demo the difference between how shell variables
#     are treated when they are in double quotes
#     versus when they are in single quotes

fruit=apple
echo -n '$fruit'
echo "$fruit"