Initial commit.
This commit is contained in:
commit
6d9fe3e358
27
bin.go
Normal file
27
bin.go
Normal file
@ -0,0 +1,27 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"os"
|
||||
"io/ioutil"
|
||||
"fmt"
|
||||
)
|
||||
|
||||
func processFile(filename string) {
|
||||
file, err := ioutil.ReadFile(filename)
|
||||
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
||||
typeprint(string(file))
|
||||
}
|
||||
|
||||
func main() {
|
||||
args := os.Args[1:]
|
||||
|
||||
if len(args) == 1 {
|
||||
processFile(args[0])
|
||||
} else {
|
||||
fmt.Println("needs a file to process")
|
||||
}
|
||||
}
|
18
typeprint.go
Normal file
18
typeprint.go
Normal file
@ -0,0 +1,18 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"time"
|
||||
)
|
||||
|
||||
func typeprint(s string) {
|
||||
for _, j := range s {
|
||||
if string(j) == "\n" {
|
||||
fmt.Printf("\n")
|
||||
} else {
|
||||
fmt.Printf("%c", j)
|
||||
}
|
||||
|
||||
time.Sleep(time.Millisecond * time.Duration(10))
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user