Sublime
An inspiration engine for ideas

Parsing PDFs has slowly driven me insane over the last year. Here are 8 weird edge cases to show you why PDF parsing isn't an easy problem. đ§” https://t.co/PCUt93PL5B
Variadic Functions There is a special form available for the last parameter in a Go function: func add(args ...int) int { total := 0 for _, v := range args { total += v } return total } func main() { fmt.Println(add(1,2,3)) } In this example, add is allowed to be called with multiple integers. This is known as a variadic parameter. By using an
... See more

