WaspVM icon indicating copy to clipboard operation
WaspVM copied to clipboard

The Wasp Lisp Virtual Machine, Associated Libraries, and MOSREF

Results 2 WaspVM issues
Sort by recently updated
recently updated
newest added

wasp_random_handle had early returns that didn't return an expected 'int' value. This would result in sporadic hangs of calls to 'random_integer' and other functions that obtained entropy.

``` >> (define wr (make-regex "[a-z]+")) :: [regex F87E190] >> (match-regex* wr "123 alpha 456 beta") :: ("alpha") ``` The expected result is ``` :: ("alpha" "beta") ``` I added...