1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
Vala/Very Quick Dice Roller
To see README about libvqdr, please see ./src/libvqdr/README
VQDR will consist of two parts, the backend library, and the front end.
The backend libray, libvqdr, provides the logic for parsing dice expression
strings, and doing the calculations needed to perform the dice rolls.
The frontend has yet to be written.
For up-to-date code, go to:
https://launchpad.net/vqdr
BUILDING
------------
$ mkdir build
$ cd build
$ meson ..
$ ninja
------------
DICE EXPRESSION SYNTAX
A dice expression is simple.
---- Basics ----
[n]d[m], [n]t[m] - [n] dices with [m] sides.
[e1] [op] [e2] - Use operator [op] on expressions [e1] and [e2]
[func]([e...]) - Use function [func] on the expression(s) [e...]
----------------
|