RosettaCodeData/Task/Comments/UNIX-Shell/comments-1.sh
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07: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