mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-03 02:27:48 +00:00
13 lines
98 B
Go
13 lines
98 B
Go
package main
|
|
|
|
/*
|
|
#define foo 3
|
|
#define bar foo
|
|
*/
|
|
import "C"
|
|
|
|
const (
|
|
Foo = C.foo
|
|
Bar = C.bar
|
|
)
|