Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 748 Bytes

dependency-cycles.md

File metadata and controls

14 lines (10 loc) · 748 Bytes
layout title seriesIndexId
series_index
The 'dependency cycle' series
Dependency cycles

One of the most common complaints about F# is that it requires code to be in dependency order. That is, you cannot use forward references to code that hasn't been seen by the compiler yet.

In this series, I discuss dependency cycles, why they are bad, and how to get rid of them.