changed some calculator stuff idk

idk
This commit is contained in:
FantasyPvP
2023-10-04 00:40:18 +01:00
parent f5cc41c132
commit 4a7cf2a634
8 changed files with 117 additions and 83 deletions
+6
View File
@@ -0,0 +1,6 @@
```rust
impl Random {
pub fn int(lower: usize, upper: usize) -> usize; // returns random number in range
pub fn selection<T: Clone>(ls: &Vec<T>)
}
```