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 ! #######"