shad-go/lectures/01-basics/exported/example.go
2020-02-20 17:40:51 +03:00

13 lines
130 B
Go

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