add: log parser exercises

This commit is contained in:
Inanc Gumus
2019-04-12 16:55:26 +03:00
parent 9fb22f7fa9
commit 44b6a26001
13 changed files with 250 additions and 0 deletions

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