I use F# as a scripting language with FSI. Is there a way to include another fsx file in my script? I want to be able to break my scripts into multiple files for larger tasks.

Thanks.

link|improve this question

42% accept rate
feedback

1 Answer

up vote 3 down vote accepted

If I understand the question correctly, you should be able to use the #load directive to do what you want. See http://msdn.microsoft.com/en-us/library/dd233175.aspx.

link|improve this answer
Bam! Not sure why I couldn't find that in a google search. – Avoidiam Jun 28 '11 at 18:52
Hmm, although, it just seems to run the file. I can't call functions that are in the file. – Avoidiam Jun 28 '11 at 19:03
@Avoidiam are you referencing the module name? ModuleName.someFunction() – gradbot Jun 28 '11 at 20:20
1  
Try wrapping the script in a module, and do a Open modulename after #load. This works for me. – Bala Jun 29 '11 at 1:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.