TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

The Human Consequences of Dynamic Typing

5 pointsby momo-reinaover 11 years ago

1 comment

hannibal5over 11 years ago
I&#x27;m huge fan of CL and dynamic typing. That said, I think static type analysis done right has it&#x27;s place.<p>I don&#x27;t see any reason why you can&#x27;t integrate static analysis into dynamic language development process like in CL. SBCL compiler already does huge amount of type analysis in compile time. Instead of type errors, it gives type warnings and hints for the purpose of making faster code.<p>What if you would extend this functionality outside compilation. What if you could declare functions that are entry points to the &quot;program&quot; and you would do block compilation equivalent and give type errors if programmer wants them. This would probably be before commit type thing and part of testing.