1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 23:28:02 +00:00

Fix misuse of single quotes.

This commit is contained in:
jbranchaud
2015-09-23 21:01:42 -05:00
parent 8ce7cba63d
commit 73f43b6d2a

View File

@@ -9,9 +9,9 @@ executed, and relevant environment. Here is a simple example.
```go ```go
package main package main
import 'fmt' import "fmt"
import 'os' import "os"
import 'syscall' import "syscall"
func main() { func main() {
// get the system's environment variables // get the system's environment variables