tangled
alpha
login
or
join now
mariuskimmina.com
/
jj-test
this repo has no description
0
fork
atom
overview
issues
pulls
1
pipelines
Compare changes
Choose any two refs to compare.
base:
stuff
main
no tags found
compare:
stuff
main
no tags found
go
+16
-9
3 changed files
expand all
collapse all
unified
split
cmd
jj-test
main.go
main.go
pkg
printer
main.go
+9
cmd/jj-test/main.go
···
1
1
+
package main
2
2
+
3
3
+
import (
4
4
+
"jj-test/pkg/printer"
5
5
+
)
6
6
+
7
7
+
func main() {
8
8
+
printer.Print("Hello JJ!")
9
9
+
}
-9
main.go
···
1
1
-
package main
2
2
-
3
3
-
import "fmt"
4
4
-
5
5
-
func main() {
6
6
-
fmt.Println("Hello JJ")
7
7
-
8
8
-
fmt.Println("Hello from 2nd commit")
9
9
-
}
+7
pkg/printer/main.go
···
1
1
+
package printer
2
2
+
3
3
+
import "fmt"
4
4
+
5
5
+
func Print(input string) {
6
6
+
fmt.Println(input)
7
7
+
}