diff --git a/subjects/firstword/main.go b/subjects/firstword/main.go new file mode 100644 index 000000000..cb4dbe631 --- /dev/null +++ b/subjects/firstword/main.go @@ -0,0 +1,12 @@ +package main + +import ( + "fmt" + "piscine" +) + +func main() { + fmt.Print(piscine.FirstWord("hello there")) + fmt.Print(piscine.FirstWord("")) + fmt.Print(piscine.FirstWord("hello ......... bye")) +}