2 files changed, 15 insertions(+), 1 deletions(-)

A => .build.yml
M README.md
A => .build.yml +12 -0
@@ 0,0 1,12 @@ 
+image: debian/buster
+packages:
+ - cargo
+sources:
+ - hg+https://hg.sr.ht/~icefox/oorandom
+tasks:
+ - build: |
+    cd oorandom
+    cargo build
+ - test: |
+    cd oorandom
+    cargo test

          
M README.md +3 -1
@@ 2,6 2,7 @@ 
 
 [![Crates.io](https://img.shields.io/crates/v/oorandom.svg)](https://crates.io/crates/oorandom)
 [![Docs](https://docs.rs/oorandom/badge.svg)](https://docs.rs/oorandom)
+[![builds.sr.ht status](https://builds.sr.ht/~icefox/oorandom.svg)](https://builds.sr.ht/~icefox/oorandom?)
 
 # What is this?
 

          
@@ 52,7 53,8 @@ and portable and involves absolutely zer
 ```rust
 use oorandom;
 fn main() {
-    let rng = oorandom::Rand32::new(some_seed);
+    let some_seed = 4;
+    let mut rng = oorandom::Rand32::new(some_seed);
     println!("Your random number is: {}", rng.rand_float());
 }
 ```