Skip to content

Instantly share code, notes, and snippets.

@iTrooz
Created February 8, 2024 13:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iTrooz/ccfd2cd5d4c1629ea69cf0d88d350556 to your computer and use it in GitHub Desktop.
Save iTrooz/ccfd2cd5d4c1629ea69cf0d88d350556 to your computer and use it in GitHub Desktop.
Run C code from Go
package main
/*
#include <stdio.h>
static void foo() {
printf("Hello from C\n");
}
*/
import "C"
func main() {
C.foo()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment