Tkdocs translation

Anyone interested in Little should check out pmarin’s translation of the Tkdocs tutorial.

https://github.com/pmarin/A_Little_Tk_Tutorial

There is a nice little GUI app in /code/sketchpad.l. I’m happy to see that it runs perfectly on the Windows build you have for download.

I was also looking at the code for another project there, e2s. I think a translation of that into Little would make a nice example app.

3 Likes

That’s awesome, thank you!

I have finished the tutorial. Here is the pdf.

I have noticed that L-gui does not work in interactive mode (in the shell). I think its a bug because L is working as expected.

>L        
% #lang L
1
% printf("hello\n");
hello

>L-gui
% #lang L
% printf("hello\n");
invalid command name "printf("hello
")"
1 Like