6 ms·
Are you familiar with Literate Programming? https://en.wikipedia.org/wiki/Literate_programming https://en.wikipedia.org/wiki/Literate_programming
by interactivecode 5y ago
Are you familiar with Literate Programming? https://en.wikipedia.org/wiki/Literate_programming https://en.wikipedia.org/wiki/Literate_programming
- frereubu 5y agoThanks for the pointer - I had read about it, but hadn't put two and two together. The kinds of things I work on (cacheable wesbites) don't need to be highly tuned for back-end performance, so I guess it's easier for me to do that.
- masklinn 5y agoLit style probably doesn't have much impact on performances, it's handled by the parser and mostly by ignoring the comments. It can impact the memory of runtime-oriented languages, especially if they keep the text around (e.g. for reflection or whatever) but that's about it.