git_function_history 0.7.0

show function history from git
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package main

import (
	"fmt"
)

func main() {
	empty_test(1, 2, "3")
	fmt.Println("Hello World!")
}

// doc comment

func empty_test(c, a int, b string) {
	fmt.Println("Hello World!")
}