Skip to content

Commit

Permalink
Provide arguments in Haskell README
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelklishin committed Oct 17, 2013
1 parent b54d341 commit 36e116e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions haskell/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,23 @@ Code examples are executed via `runhaskell`:

[Tutorial two: Work Queues](http://www.rabbitmq.com/tutorial-two-python.html):

runhaskell newTask.hs
runhaskell newTask.hs hello world
runhaskell worker.hs

[Tutorial three: Publish/Subscribe](http://www.rabbitmq.com/tutorial-three-python.html)

runhaskell receiveLogs.hs
runhaskell emitLog.hs
runhaskell emitLog.hs hello world

[Tutorial four: Routing](http://www.rabbitmq.com/tutorial-four-python.html)

runhaskell receiveLogsDirect.hs
runhaskell emitLogDirect.hs
runhaskell receiveLogsDirect.hs info warn
runhaskell emitLogDirect.hs warn "a warning"

[Tutorial five: Topics](http://www.rabbitmq.com/tutorial-five-python.html)

runhaskell receiveLogsTopic.hs
runhaskell emitLogTopic.hs
runhaskell receiveLogsTopic.hs info warn
runhaskell emitLogTopic.hs warn "a warning"

[Tutorial six: RPC](http://www.rabbitmq.com/tutorial-six-python.html)

Expand Down

0 comments on commit 36e116e

Please sign in to comment.