exercism/ocaml/bob
Brian Buller ec4ec16ac2 Just a commit 2016-08-15 14:08:39 -05:00
..
.merlin Just a commit 2016-08-15 14:08:39 -05:00
Makefile Initial Commit 2016-08-13 18:20:14 -05:00
README.md Initial Commit 2016-08-13 18:20:14 -05:00
bob.mli Initial Commit 2016-08-13 18:20:14 -05:00
test.ml Initial Commit 2016-08-13 18:20:14 -05:00

README.md

Bob

Bob is a lackadaisical teenager. In conversation, his responses are very limited.

Bob answers 'Sure.' if you ask him a question.

He answers 'Whoa, chill out!' if you yell at him.

He says 'Fine. Be that way!' if you address him without actually saying anything.

He answers 'Whatever.' to anything else.

Instructions

Run the test file, and fix each of the errors in turn. When you get the first test to pass, go to the first pending or skipped test, and make that pass as well. When all of the tests are passing, feel free to submit.

Remember that passing code is just the first step. The goal is to work towards a solution that is as readable and expressive as you can make it.

Please make your solution as general as possible. Good code doesn't just pass the test suite, it works with any input that fits the specification.

Have fun!

Running Tests

Because OCaml is a compiled language you need to compile your submission and the test code before you can run the tests. Compile with

$ corebuild -quiet test.native

and when successful run the tests by running the test.native executable:

./test.native

Alternatively just type

make

Source

Inspired by the 'Deaf Grandma' exercise in Chris Pine's Learn to Program tutorial. view source