You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
147 B

  1. package main
  2. /*
  3. #cgo LDFLAGS: -L. -led25519
  4. #include "ed25519/foo.h"
  5. */
  6. import "C"
  7. import "fmt"
  8. func main() {
  9. C.test()
  10. fmt.Println("hello")
  11. }