// 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() { }