RosettaCodeData/Task/Comments/UNIX-Shell/comments.sh
2023-07-01 13:44:08 -04:00

7 lines
202 B
Bash

#!/bin/sh
# A leading hash symbol begins a comment.
echo "Hello" # Comments can appear after a statement.
# The hash symbol must be at the beginning of a word.
echo This_Is#Not_A_Comment
#Comment