Files
2020-01-03 23:44:58 +01:00

13 lines
98 B
Go

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