HackerRank - Let's Echo
April - 25/2025Problem:
Write a bash script that prints the string "HELLO".
# Output
- HELLO
# Solution
echo Hello
# Solution_01
message='HELLO'
echo "$message"
echo Hello
message='HELLO'
echo "$message"