Nathanael Coonrod
Nathanael Coonrod
Having this same issue too.
I've been trying to figure out how to get anonymous functions into Onelang. I see why you left them out, it's tough! Especially when trying to generate them across all...
By the way, I think there'd be a lot more support if there was only a single language used to generate code, in my opinion, it should be Typescript. It...
Preferably just adding anonymous functions to TypeScript. Here's an example: ``` let anonFunction = function () { console.log ("Anonymous function"); } function TestFunction () { console.log("Test function"); } anonFunction ();...
btw, do you have any pointers for me on how to add that functionality?