Write a function all_parameters that accepts any number of the parameters as the input, reads all of them at once, and displays them in the console.
Functions and arguments
Read all parameters
Report a typo
Sample Input 1:
Mary Jane TomSample Output 1:
Mary Jane TomWrite a program in Shell
#!/usr/bin/env bash
all_parameters() {
}
___
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.