I\'m aware of other questions about modules and namespaces in F#, but they\'re not helping me right now.
I\'ve got a project with
Utilities.fs
I'm relatively new at this too, but this is what works for me when I'm testing in an fsx file:
#if INTERACTIVE
#r @"C:\Program Files\FSharpPowerPack-2.0.0.0\bin\FParsec.dll"
#r @"C:\Program Files\FSharpPowerPack-2.0.0.0\bin\FParsecCS.dll"
#endif
open FParsec.Primitives
open FParsec.CharParsers
followed by my code that uses these libraries.