Skip to content
Lumpology
Menu
  • FC-Standard & Patchwork Documentation
    • FC-Standard & Patchwork Documentation
    • Core Libraries
    • Tutorials & Examples
  • Forum
  • Accounts
    • Register
    • Login
Menu

Submit a patch.

Send patch to support@lumpology.com using the name “patch”, do not include files or links, put all the code in the email.

Patchwork code:

  • ~patchwork
  • (Patch language) ~c , ~c++ , ~//+ , ~other: (name here)
  • (Patch name) ~name: (name here)
  • (Patch aim) ~remove , ~replace , ~add
  • (Patch effect type remove , replace , add:) ~lib , ~sublib , ~command ~commandoperator
  • (start of patch) ~start
  • (code) , (extra ops) ~del: (name of lib , sublib , command , commandoperator) ~read (read next line or code) , ~syntaxerror (make syntax error) , ~mem (use mem op) , ~input , ~(variant)cal (int , float , bool) ,  ~ret (return to control lib/index and endcommand)
  • (end of patch) ~end

 

Patch example:

  1. ~patchwork
  2. ~c++
  3. ~name: out_output
  4. ~replace
  5. ~command
  6. ~start
  7. ~del: out_line
  8. #include <iostream>
  9. using namespace std;
  10. void out_output() {
  11. ~read
  12. if (~read==”~mem”) {
  13. cout << ~mem <<endl;
  14. ~ret
  15. } else {
  16. cout << ~read <<endl;
  17. ~ret
  18. }
  19. }
  20. ~end
© 2023 Lumpology | Powered by Minimalist Blog WordPress Theme