Ver Fonte

Add hello function

tmp001 há 7 anos atrás
pai
commit
b06a7d86e5
1 ficheiros alterados com 19 adições e 0 exclusões
  1. 19 0
      project/functions/hello.bash

+ 19 - 0
project/functions/hello.bash

@@ -0,0 +1,19 @@
+  # Functions to deal with greetings
+  #
+  # Written by My_name
+  #
+  # Earth and Life Institute / Université catholique de Louvain (ELIC-UCL)
+  # Created: May 4, 2017
+  # Adapted:
+ 
+  #######################################
+  # Say Hello in English
+  # Globals:
+  # Arguments: 
+  # None
+  # Returns:
+  # None
+  #######################################
+  function say_hello() {
+    echo "Hello world !"
+  }