mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-01 11:52:47 +00:00
12 lines
101 B
Go
12 lines
101 B
Go
package issue8756
|
|
|
|
/*
|
|
#cgo LDFLAGS: -lm
|
|
#include <math.h>
|
|
*/
|
|
import "C"
|
|
|
|
func Pow() {
|
|
C.pow(1, 2)
|
|
}
|