mirror of
https://github.com/jbranchaud/til
synced 2026-01-02 22:58:01 +00:00
Fix misuse of single quotes.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user