exercism/go/paasio
Brian Buller 4a9b690bb2 2017-08-15 2017-08-15 09:55:28 -05:00
..
README.md Resync 2016-09-12 17:41:46 -05:00
interface.go Resync 2016-09-12 17:41:46 -05:00
paasio.go 2017-08-15 2017-08-15 09:55:28 -05:00
paasio_test.go Resync 2016-09-12 17:41:46 -05:00

README.md

Paasio

Write a program that reports network IO statistics

You are writing a PaaS, and you need a way to bill customers based on network and filesystem usage.

Create a wrapper for network connections and files that can report IO statistics. The wrapper must report:

  • The total number of bytes read/written.
  • The total number of read/write operations.

To run the tests simply run the command go test in the exercise directory.

If the test suite contains benchmarks, you can run these with the -bench flag:

go test -bench .

For more detailed info about the Go track see the help page.

Source

Brian Matsuo https://github.com/bmatsuo

Submitting Incomplete Problems

It's possible to submit an incomplete solution so you can see how others have completed the exercise.