Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Hello World Program

– shows us the correct syntax for runnable code

#!/bin/sh
# 1st program; hello world
echo “ Hello World ”

Hello World + Storing Variables Program

#!/bin/sh
# 2nd program; hello world
#initializing the string variable
StringVariable = “ Hello World ”
# displaying the value of the string variable
echo “ $StringVariable ”

You might also like