aboutsummaryrefslogtreecommitdiffstats
path: root/exercises/functions/functions1
diff options
context:
space:
mode:
authorToby Vincent <tobyv@tobyvin.dev>2024-08-09 15:33:56 -0500
committerToby Vincent <tobyv@tobyvin.dev>2024-08-09 15:33:56 -0500
commit7a5f1e0c9d30749c325d61f1c9771ba4f1a68750 (patch)
treef3458e7a150e9b38618594e5bd89891f1cf6b5fe /exercises/functions/functions1
parentb3890a15b255760865f1601779ed280e3737e935 (diff)
feat: complete functions and variablesHEADmain
Diffstat (limited to 'exercises/functions/functions1')
-rw-r--r--exercises/functions/functions1/main.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/exercises/functions/functions1/main.go b/exercises/functions/functions1/main.go
index 9ad8e8a..cf47e93 100644
--- a/exercises/functions/functions1/main.go
+++ b/exercises/functions/functions1/main.go
@@ -1,9 +1,12 @@
// functions1
// Make me compile!
-// I AM NOT DONE
package main
func main() {
call_me()
}
+
+func call_me() {
+
+}