[Ethereum] why the browser based solidity compiler crushes when the code is too long

remixsolidity

I find that the browser based solidity compiler will crush when the code's length reach certain value which is about 230 lines. I don't know why and I am certain that there is no syntax mistake, does this problem ever happen to you?

Best Answer

Compiling code takes a lot of computing power, especially when you recompile every time you edit. There's simply a limit to how much you can do within a browser.

If you're writing a lot of code, I would highly reccomend utilizing a framework or command-line compiler

Related Topic