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:
- ~patchwork
- ~c++
- ~name: out_output
- ~replace
- ~command
- ~start
- ~del: out_line
- #include <iostream>
- using namespace std;
- void out_output() {
- ~read
- if (~read==”~mem”) {
- cout << ~mem <<endl;
- ~ret
- } else {
- cout << ~read <<endl;
- ~ret
- }
- }
- ~end