hello.bash 407 B

12345678910111213141516171819
  1. # Functions to deal with greetings
  2. #
  3. # Written by My_name
  4. #
  5. # Earth and Life Institute / Université catholique de Louvain (ELIC-UCL)
  6. # Created: May 4, 2017
  7. # Adapted:
  8. #######################################
  9. # Say Hello in English
  10. # Globals:
  11. # Arguments:
  12. # None
  13. # Returns:
  14. # None
  15. #######################################
  16. function say_hello() {
  17. echo "Hello world !"
  18. }