HP Forums
Reformater for PPL Code - Printable Version

+- HP Forums (https://www.hpmuseum.org/forum)
+-- Forum: HP Calculators (and very old HP Computers) (/forum-3.html)
+--- Forum: HP Prime (/forum-5.html)
+--- Thread: Reformater for PPL Code (/thread-22328.html)



Reformater for PPL Code - Insoft - 09-13-2024 05:12 PM

Reformating your code enforce a consistent coding style throughout your project, making it easier for multiple developers to work on the same codebase. It helps maintain a uniform look and feel, which can enhance code readability. Readability: Well-formatted code is easier to read and understand.

The PPL file must be in UTF-16LE format, and at this time, .hpprgrm files with header and footer are not supported—only raw code is accepted currently.

Download
macOS

Source Code
GitHub


RE: Reformater for PPL Code - Insoft - 09-14-2024 01:41 PM

Version 1.0 Now Released.
Please share your code style and thoughts.

for e.g.

Do you prefer ?
Code:
LOCAL A:=123;
TO
Code:
LOCAL A := 123;