tinygo/cgo/testdata/const.go
2020-01-03 23:44:58 +01:00

12 строки
98 Б
Go

package main
/*
#define foo 3
#define bar foo
*/
import "C"
const (
Foo = C.foo
Bar = C.bar
)