Update .bashrc
[dotfiles/.git] / main / multi.go
1 package main
2
3 func g(x int) {
4 }
5
6 func f() {
7         x := 1
8         g(x) // "g(x)" is the selection for multiple queries
9 }
10
11 func main() {
12         f()
13 }