From a1340b55edbf51286570a2b487d24e5e33f2982c Mon Sep 17 00:00:00 2001 From: Christopher Date: Sun, 9 Jun 2019 17:47:58 +0200 Subject: [PATCH] Updated WebAssembly (markdown => asciidoc) --- WebAssembly.md => WebAssembly.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename WebAssembly.md => WebAssembly.asciidoc (98%) diff --git a/WebAssembly.md b/WebAssembly.asciidoc similarity index 98% rename from WebAssembly.md rename to WebAssembly.asciidoc index c1d99c94..042023a3 100644 --- a/WebAssembly.md +++ b/WebAssembly.asciidoc @@ -95,7 +95,7 @@ $ goexec 'http.ListenAndServe(":8080", http.FileServer(http.Dir(".")))' Or use your own https://play.golang.org/p/pZ1f5pICVbV[basic HTTP server command]. -Note: for the `goexec` command to work on Unix-like systems, you must [add the PATH environment variable](https://golang.org/doc/install#tarball) for Go to your shell's `profile`. Go's getting started guide explains this: +Note: for the `goexec` command to work on Unix-like systems, you must https://golang.org/doc/install#tarball[add the path environment variable] for Go to your shell's `profile`. Go's getting started guide explains this: > Add /usr/local/go/bin to the PATH environment variable. You can do this by adding this line to your /etc/profile (for a system-wide installation) or $HOME/.profile: > `export PATH=$PATH:/usr/local/go/bin`