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:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user