@Araq my intent is to output more readable and debbugable code. Im currently 
looking at **jsgen.nim**

Lets say I want to make a new backend target - Typescript

The resulting code shoud look like this: 
    
    
    const msg:string = "TS Backend";
    
    for(i = 0; i<=10 ; i++) {
       console.log(msg);
    }
    
    
    Run

and thats it, no string converters, no raw echo.

Ideally, I want to copy all the files used for the JS backend, and start 
tweaking them, first the echo, than the most basic for loops etc. but idk where 
to start :)

Reply via email to