diff options
| author | nic-gaffney <gaffney_nic@protonmail.com> | 2023-06-25 19:41:03 -0500 |
|---|---|---|
| committer | nic-gaffney <gaffney_nic@protonmail.com> | 2023-06-25 19:41:03 -0500 |
| commit | 28ab9c8ba094d86dbcb9abb853dddd83dca028cc (patch) | |
| tree | b30f3ff0218555270cde4c99c89fa866a4ad324a /std/stdmath.sloth | |
| parent | bf647e430e3a3642c8199dc81a411d5e1586cabb (diff) | |
| download | sloth-28ab9c8ba094d86dbcb9abb853dddd83dca028cc.tar.gz | |
Standard library updated and llvm-sys added to cargo.toml
Diffstat (limited to 'std/stdmath.sloth')
| -rw-r--r-- | std/stdmath.sloth | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/stdmath.sloth b/std/stdmath.sloth index ebf9a7c..0f967eb 100644 --- a/std/stdmath.sloth +++ b/std/stdmath.sloth @@ -1,4 +1,4 @@ -foreign fn rand() Int; +foreign fn randGen(min: Int, max: Int) Int; fn abs(x: Int) Int { if x < 0 { |
