(no title)
tegeek
|
5 years ago
That's spot on. I mostly work with C#, F# in a day to day job and I build my code only a few times.
This is also true when I work with Java, Angular and TypeScript.
When I pick a new feature to implement I design that on paper with pencil and then mostly translate that to code. Mostly I can code for hours without compiling since this is where Typed Languages have strength.
tsimionescu|5 years ago
I don't think typed vs untyped languages really makes a huge difference if you're designing code this way. The difference comes when the compiler can actually verify your design, if you don't compile it doesn't really matter what the compiler can check.
GordonS|5 years ago
I mostly work with C#, and occasionally I might only end up compiling the project a couple of times in a day, but I'll probably be building a test project several times in the meantime (e.g. after adding each test).
Alternatively, if I'm building a web GUI, I'll probably be building quite frequently, making sure that data is bound correctly and that the UI looks as expected.
pjmlp|5 years ago
tegeek|5 years ago
secondcoming|5 years ago