tmp001 7 年之前
父节点
当前提交
209d12159f
共有 2 个文件被更改,包括 3 次插入3 次删除
  1. 2 2
      project/functions/greetings.sh
  2. 1 1
      project/run.sh

+ 2 - 2
project/functions/greetings_template.sh → project/functions/greetings.sh

@@ -15,5 +15,5 @@
 # None
 #######################################
 function say_hello() {
-	echo "This is a template!"
-}
+	echo "Add same function for your language below..."
+}²

+ 1 - 1
project/run.sh

@@ -1,7 +1,7 @@
 #!/bin/bash
 
 # Load (source) the functions 
-. functions/greetings_template.sh
+. functions/greetings.sh
 
 # Say Hello World
 echo "####### Hello World ! #######"