- Have the compiler run continuously, watching the file system for source
changes and automatically perform multithreaded compilation to build projects
quickly.
- Hot code swapping. When integrated with the previous feature, you could
press "save" in your editor and see the change immediately in your running
software.
Of course this only works for some kinds of changes - obviously if you make changes to your initialization code, you won't see a difference. But it would probably work at the function level, so you could swap out any individual function for a new one.
changes and automatically perform multithreaded compilation to build projects
quickly.
press "save" in your editor and see the change immediately in your running
software.
Of course this only works for some kinds of changes - obviously if you make changes to your initialization code, you won't see a difference. But it would probably work at the function level, so you could swap out any individual function for a new one.