Files
learngo/x-tba/strings-runes-bytes/exercises/main.go

19 lines
464 B
Go
Raw Normal View History

2019-02-23 15:06:24 +03:00
// 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() {
}