1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-04 13:57:38 +02:00

Fix go math library alias (#4702)

Fix go math library alias
This commit is contained in:
Tavis
2023-08-24 23:13:00 -05:00
committed by GitHub
parent f6c70b2716
commit 08558182f5

View File

@@ -46,7 +46,7 @@ package main
import ( import (
"fmt" // A package in the Go standard library. "fmt" // A package in the Go standard library.
"io/ioutil" // Implements some I/O utility functions. "io/ioutil" // Implements some I/O utility functions.
"math" // Math library with local alias m. m "math" // Math library with local alias m.
"net/http" // Yes, a web server! "net/http" // Yes, a web server!
"os" // OS functions like working with the file system "os" // OS functions like working with the file system
"strconv" // String conversions. "strconv" // String conversions.