update: log parser dir to input scanning
This commit is contained in:
20
23-input-scanning/exercises/01-uppercaser/main.go
Normal file
20
23-input-scanning/exercises/01-uppercaser/main.go
Normal file
@@ -0,0 +1,20 @@
|
||||
package main
|
||||
|
||||
// ---------------------------------------------------------
|
||||
// EXERCISE: Uppercaser
|
||||
//
|
||||
// Use a scanner to convert the lines to uppercase, and
|
||||
// print them.
|
||||
//
|
||||
// 1. Feed the shakespeare.txt to your program.
|
||||
//
|
||||
// 2. Scan the input using a new Scanner.
|
||||
//
|
||||
// 3. Print each line.
|
||||
//
|
||||
// EXPECTED OUTPUT
|
||||
// Please run the solution to see the expected output.
|
||||
// ---------------------------------------------------------
|
||||
|
||||
func main() {
|
||||
}
|
Reference in New Issue
Block a user