HackerRank - Let's Echo

April - 25/2025

Problem:

Write a bash script that prints the string "HELLO".

# Output

# Solution

            
    echo Hello
        

# Solution_01

            
    message='HELLO' 
    echo "$message"       
        

Post: