this repo has no description

refactor

Changed files
+16 -9
cmd
jj-test
pkg
printer
+9
cmd/jj-test/main.go
··· 1 + package main 2 + 3 + import ( 4 + "jj-test/pkg/printer" 5 + ) 6 + 7 + func main() { 8 + printer.Print("Hello JJ!") 9 + }
-9
main.go
··· 1 - package main 2 - 3 - import "fmt" 4 - 5 - func main() { 6 - fmt.Println("Hello JJ") 7 - 8 - fmt.Println("Hello from 2nd commit") 9 - }
+7
pkg/printer/main.go
··· 1 + package printer 2 + 3 + import "fmt" 4 + 5 + func Print(input string) { 6 + fmt.Println(input) 7 + }