mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-26 05:20:47 -04:00
4 lines
201 B
Plaintext
4 lines
201 B
Plaintext
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)'.
|