Hello

Report a typo

Write a function hello() that takes a username as a parameter and returns the string Hello, user <username>!

Sample Input 1:

Mary

Sample Output 1:

Hello, user Mary!
Write a program in Shell
#!/usr/bin/env bash

hello() {

}
___

Create a free account to access the full topic