Write a function hello() that takes a username as a parameter and returns the string Hello, user <username>!
Functions and arguments
Hello
Report a typo
Sample Input 1:
MarySample Output 1:
Hello, user Mary!Write a program in Shell
#!/usr/bin/env bash
hello() {
}
___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.