diff --git a/.cspell.json b/.cspell.json index 1ad5340..7a9880a 100644 --- a/.cspell.json +++ b/.cspell.json @@ -2,6 +2,7 @@ "words": [ "covector", "lalrpop", - "noctisroll" + "noctisroll", + "TRPG" ] } diff --git a/README.md b/README.md new file mode 100644 index 0000000..2ada350 --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +# Noctisroll + +A Text-based TRPG dice rolling system. + +## Usage + +```rust +use noctisroll::roll_dice; + +let result = roll_dice("1d20+3")?; +```