tmp001 9 년 전
부모
커밋
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 ! #######"