12 строки
98 Б
Go
12 строки
98 Б
Go
package main
|
|
|
|
/*
|
|
#define foo 3
|
|
#define bar foo
|
|
*/
|
|
import "C"
|
|
|
|
const (
|
|
Foo = C.foo
|
|
Bar = C.bar
|
|
)
|