F
Faraz Soomro
he/himStudentSundar STEM SchoolOpen to work
A small suggestion for the compiler
December 31, 2025 • 1 min read • 1 views
I was thinking about whether a code editor or compiler could have shortcut features, like:
- Typing
fori + Enterautomatically expands to:
`for(int i = 0; i < n; i++) {
} `
- Typing
fore + Enterexpands to:
`for(auto i : container) {
} `
And maybe other shortcuts for common code patterns to make coding faster.
Thanks!
F