September 2017 Update
This commit is contained in:
parent
bba7bfd280
commit
ba8067c3b7
14570 changed files with 153136 additions and 63871 deletions
|
|
@ -45,7 +45,7 @@ actor Main
|
|||
var i: USize = 0
|
||||
while i < trial.size() do
|
||||
try
|
||||
if trial(i) == _target(i) then
|
||||
if trial(i)? == _target(i)? then
|
||||
ret_val = ret_val + 1
|
||||
end
|
||||
end
|
||||
|
|
@ -64,7 +64,7 @@ actor Main
|
|||
if rnd_real <= rate then
|
||||
let rnd_int: U64 = _rand.int(_possibilities.size().u64())
|
||||
try
|
||||
ret_val.push(_possibilities(rnd_int.usize()))
|
||||
ret_val.push(_possibilities(rnd_int.usize())?)
|
||||
end
|
||||
else
|
||||
ret_val.push(char)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue