Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions site/public/aussie_plus_plus.js

Large diffs are not rendered by default.

Binary file modified site/public/aussie_plus_plus.wasm
Binary file not shown.
2 changes: 1 addition & 1 deletion src/runtime/callable/builtin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ impl AussieCallable for Rand {
}
};

if start > end {
if start >= end {
return Err(RuntimeError::General(
"OI MATE, CAN YA FUCKIN' COUNT?? START MUST BE LESS THAN END!!".into(),
)
Expand Down