func div_check(a, b){ Perl.eval("#{a} / #{b}") }   say div_check(10, 2) # 5 say div_check(1, 0) # nil (detected)