c0895faf31
plugin. Acme::PlayCode provides some code transformations via plugins to convert existing code into code with lesser risk of typing errors, e.g. 'if($a == 5)' -> 'if(5 == $a)' to avoid typo like 'if($a = 5)'.
3 lines
201 B
Text
3 lines
201 B
Text
Acme::PlayCode provides some code transformations via plugins to convert
|
|
existing code into code with lesser risk of typing errors, e.g.
|
|
'if($a == 5)' -> 'if(5 == $a)' to avoid typo like 'if($a = 5)'.
|