浏览代码

Add hello function

tmp001 7 年之前
父节点
当前提交
b06a7d86e5
共有 1 个文件被更改,包括 19 次插入0 次删除
  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 !"
+  }