Leksah without core

Is there a way to program in Lex without creating a main function / module, for example, to test small functions and programs? Can't I create a new module and use it?

thanks

+4
source share
1 answer

Leksah is designed to help you structure your core project right from the start. If you want to use it for a quick editor, find out what is not for this, but you can do a workaround:

Create a new workspace and package called Scratch / Scratchpad / Temp with one module. Use it when you just want to work a little, and clean it when you start something else.

+2
source

Source: https://habr.com/ru/post/1447311/


All Articles