Popularity
6.6
Growing
Activity
0.0
Stable
3
11
0

Monthly Downloads: 18
Programming language: Haskell
License: GNU General Public License v2.0 only
Tags: ACME    
Latest version: v0.1.7

roller alternatives and similar packages

Based on the "ACME" category.
Alternatively, view roller alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of roller or a related project?

Add another 'ACME' Package

README

Roller

Roller is a nice little utility that lets us generate numbers from dice expressions popular in pen and paper role playing games. Haskell implementation of dice notation.

Builds

master

master

develop

develop

current version

Hackage

Usage & sample dice rolls:

Single Terms:

Constant Term:

$ roller "4"
4

Dice Term:

$ roller "4d5"
10

Combined Terms:

Addition:

$ roller "3d10 + 2"
23

Subtraction (verbose mode):

$ roller -v "3d10 - 2"
16 [7,3,8,-2]

Multiple rolls:

$ roller -n5 "1d4"
1
3
3
2
3