19 lines
464 B
Go
19 lines
464 B
Go
![]() |
// For more tutorials: https://blog.learngoprogramming.com
|
||
|
//
|
||
|
// Copyright © 2018 Inanc Gumus
|
||
|
// Learn Go Programming Course
|
||
|
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
||
|
//
|
||
|
|
||
|
// + Masker : Use copy instead of append when appending the "http://" manually
|
||
|
// + Wrapper: Accept the width from the cmdline
|
||
|
// args, maxWidth := os.Args[1:], 40
|
||
|
// if len(args) == 1 {
|
||
|
// maxWidth, _ = strconv.Atoi(args[0])
|
||
|
// }
|
||
|
|
||
|
package main
|
||
|
|
||
|
func main() {
|
||
|
}
|