fork of https://github.com/sourcegraph/zoekt
0

Configure Feed

Select the types of activity you want to include in your feed.

at main 128 B View raw
1package main 2 3import ( 4 "fmt" 5) 6 7func main() { 8 var b, c int = 1, 2 9 fmt.Println(b, c) 10 11 fruit := "apple" 12 fmt.Println(fruit) 13}