-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Yang Zhikai
committed
Mar 12, 2019
1 parent
4f3e22f
commit b6abe06
Showing
21 changed files
with
247 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package main | ||
import( | ||
"fmt" | ||
) | ||
|
||
|
||
func funcA () { | ||
fmt.Println("func A is called!") | ||
} | ||
|
||
func main() { | ||
|
||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package main | ||
import( | ||
"fmt" | ||
) | ||
|
||
|
||
func funcA () { | ||
fmt.Println("func A is called!") | ||
} | ||
|
||
func main() { | ||
funcA() | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package main | ||
import( | ||
"fmt" | ||
) | ||
|
||
|
||
func funcA () { | ||
fmt.Println("func A is called!") | ||
} | ||
|
||
func main() { | ||
|
||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package main | ||
import( | ||
"fmt" | ||
) | ||
func return_1 () int{ | ||
return 1 | ||
} | ||
|
||
func funcB (a int) { | ||
fmt.Println("func A is called!") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package main | ||
import( | ||
"fmt" | ||
) | ||
|
||
func funcA () { | ||
fmt.Println("func A is called!") | ||
} | ||
func main() { | ||
funcA() | ||
return_1() | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package main | ||
import( | ||
"fmt" | ||
) | ||
func return_1 () int{ | ||
return 1 | ||
} | ||
|
||
func funcB (a int) { | ||
fmt.Println("func A is called!") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package main | ||
import( | ||
"fmt" | ||
) | ||
|
||
func funcA () { | ||
fmt.Println("func A is called!") | ||
} | ||
func main() { | ||
funcA() | ||
return_1() | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package main | ||
import( | ||
"fmt" | ||
) | ||
func return_1 () int{ | ||
fmt.Println("return 1") | ||
return 1 | ||
} | ||
|
||
func funcB (a int) { | ||
fmt.Println("func A is called!") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package main | ||
import( | ||
"fmt" | ||
) | ||
|
||
func funcA () { | ||
fmt.Println("func A is called!") | ||
} | ||
func main() { | ||
funcA() | ||
return_1() | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package main | ||
import( | ||
"fmt" | ||
) | ||
func return_1 () int{ | ||
return 1 | ||
} | ||
|
||
func funcB (a int) { | ||
fmt.Println("func A is called!") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package main | ||
import( | ||
"fmt" | ||
) | ||
|
||
func funcA () { | ||
fmt.Println("func A is called!") | ||
} | ||
func main() { | ||
|
||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package main | ||
import( | ||
"fmt" | ||
) | ||
func return_1 () int{ | ||
return 1 | ||
} | ||
|
||
func funcB (a int) { | ||
fmt.Println("func A is called!") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package main | ||
import( | ||
"fmt" | ||
) | ||
|
||
func funcA () { | ||
fmt.Println("func A is called!") | ||
} | ||
func main() { | ||
funcA() | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package main | ||
import( | ||
"fmt" | ||
) | ||
func return_1 () int{ | ||
return 1 | ||
} | ||
|
||
func funcB (a int) { | ||
fmt.Println("func A is called!") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package main | ||
import( | ||
"fmt" | ||
) | ||
|
||
func funcA () { | ||
fmt.Println("func A is called!") | ||
} | ||
func main() { | ||
funcA() | ||
funcB() | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package main | ||
import( | ||
"fmt" | ||
) | ||
func return_1 () int{ | ||
fmt.Println("return 1") | ||
return 1 | ||
} | ||
|
||
func funcB (a int) { | ||
fmt.Println("func A is called!") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package main | ||
import( | ||
"fmt" | ||
) | ||
|
||
func funcA () { | ||
fmt.Println("func A is called!") | ||
} | ||
func main() { | ||
funcA() | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package main | ||
import( | ||
"fmt" | ||
) | ||
func return_1 () int{ | ||
fmt.Println("return 1") | ||
return 1 | ||
} | ||
|
||
func funcB (a int) { | ||
fmt.Println("func A is called!") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package main | ||
import( | ||
"fmt" | ||
) | ||
|
||
func funcA () { | ||
fmt.Println("func A is called!") | ||
} | ||
func main() { | ||
return_1() | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
digraph test_feature_branch { | ||
A -> B -> C -> D -> E -> F -> K; | ||
B -> G -> D ; | ||
D -> H -> I -> E ; | ||
A -> J -> F ; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters