mirror of
https://github.com/Yu-Vitaqua-fer-Chronos/NULID.git
synced 2024-11-22 06:22:48 +00:00
12 lines
179 B
Markdown
12 lines
179 B
Markdown
|
# NULID
|
||
|
This is an implementation of the [ULID](https://github.com/ulid/spec)
|
||
|
spec in Nim!
|
||
|
|
||
|
## Usage
|
||
|
```nim
|
||
|
let gen = NULIDGenerator()
|
||
|
let nulid = gen.nulidSync()
|
||
|
|
||
|
echo nulid
|
||
|
```
|