Quick actions

cmd+k|ctrl+k

Navigation

Languages

%

Snippet info

Language

Raku

Visibility

public

Author

kaspik99

Created

2018-11-24T10:27:38Z

Updated

2018-11-24T10:27:38Z


# % by default
say -1 % 109;

{
    # % as C++
    sub infix:«%»(\l,\r){ &CORE::infix:«%»(l, r * l.sign) }
    
    say -1 % 109;
}
INFO