abi-code-gen
abi-code-gen copied to clipboard
Generic code generator from abi
[Template Literal](https://github.com/Drulac/template-literal) is fastest, smallest and simplest template engine, because it use JS's literal template feature. It's 55 times faster than EJS, and it also use less CPU and RAM...
The following C# code is generated: ```c# public Task StoreDocumentAsyncCall(byte[] key, string name, string description) { var function = GetFunctionStoreDocument(); return function.CallAsync(key, name, description); } ``` And it would be...
```ejs public Task AsyncCall() { var function = GetFunction(); return function.CallAsync(); }