BASH - Comments

Multi-line comments

#!/bin/bash
: '
This script calculates
the square of 5.
'
 
((area=5*5))
 
echo $area

NOTE: Notice how multi-line comments are placed inside :’ and characters.