1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 07:08:01 +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
package main
import 'fmt'
import 'os'
import 'syscall'
import "fmt"
import "os"
import "syscall"
func main() {
// get the system's environment variables