Files
learngo/13-loops/exercises/09-word-finder-exercises/01-case-insensitive/main.go
2018-10-30 22:38:26 +03:00

28 lines
678 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/
//
package main
// ---------------------------------------------------------
// EXERCISE: Case Insensitive Search
//
// Allow for case-insensitive searching
//
// EXAMPLE
// Let's say that the user runs the program like this:
// go run main.go LAZY
//
// Or like this: go run main.go lAzY
// Or like this: go run main.go lazy
//
// For all cases above, the program should find
// the "lazy" keyword.
// ---------------------------------------------------------
func main() {
}