-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathletsEcho.sh
More file actions
15 lines (11 loc) · 1.26 KB
/
letsEcho.sh
File metadata and controls
15 lines (11 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
########################################################################################################################################################
# Problem Name: Let's Echo #
# #
# Problem Description: Write a bash script that prints the string "HELLO". #
# #
# Complete problem description with sample input and output can be found here: https://www.hackerrank.com/challenges/bash-tutorials-lets-echo/problem #
# #
########################################################################################################################################################
##### ====== Solution ====== #####
#!/bin/bash
echo "HELLO"