Skip to content

Instantly share code, notes, and snippets.

@blanchonvincent
Last active September 3, 2019 11:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blanchonvincent/aa48769406da54859c1c9974a642c4ea to your computer and use it in GitHub Desktop.
Save blanchonvincent/aa48769406da54859c1c9974a642c4ea to your computer and use it in GitHub Desktop.
Medium - compiler
package main
func main() {
a := 1
b := 2
if true {
add(a, b)
}
}
func add(a, b int) {
println(a + b)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment