Files
learngo/13-loops/exercises/09-word-finder-exercises/01-case-insensitive/main.go
2019-10-30 19:41:13 +03:00

29 lines
793 B
Go

// Copyright © 2018 Inanc Gumus
// Learn Go Programming Course
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
//
// For more tutorials : https://learngoprogramming.com
// In-person training : https://www.linkedin.com/in/inancgumus/
// Follow me on twitter: https://twitter.com/inancgumus
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() {
}