shad-go/lectures/01-basics/exported/example.go

14 lines
130 B
Go
Raw Normal View History

2020-02-20 14:40:51 +00:00
package example
const C0 = 9.8
const c1 = 15
var V0 string
var v1 string
func F0() {}
func f1() {}
type T0 int
type t1 string