Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created May 28, 2019 02:10
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 parzibyte/82e6de0eb4c0071ce195cfd2c533f111 to your computer and use it in GitHub Desktop.
Save parzibyte/82e6de0eb4c0071ce195cfd2c533f111 to your computer and use it in GitHub Desktop.
// +build js,wasm
/*
Un acercamiento a WebAssembly con Go
@author parzibyte
Visita: parzibyte.me/blog
*/
package main
import (
"log"
)
func main() {
log.Printf("Hola WebAssembly. 5 + 5 = %d", 5+5)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment