Tagged Questions

9
votes
3answers
348 views

F# interactive and performance profilers

F# Interactive (and in general REPL-style tools) is an ideal entrance to performance profiling. What could be easier than to select a code block and send it right to a profiler that would come back ...
8
votes
2answers
210 views

Out of memory exception for a matrix

I have the "'System.OutOfMemoryException" exception for this simple code (a 10 000 * 10 000 matrix) multiplied by itself: #time #r "Microsoft.Office.Interop.Excel" #r "FSharp.PowerPack.dll" open ...
8
votes
2answers
2k views

F#, namespaces, modules, fs and fsx

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 namespace Company.Project.Namespace module Utilities = ...
6
votes
3answers
298 views

f# interactive - how to see all the variables defined in current session

In F# interactive, how can I see a list of variables/functions defined in this session? like a function whos() in python or ls() in R? thanks,
5
votes
1answer
486 views

F#/C# - fsx Script Files and Project References

You have a solution with one C# project in it. SomeComp.Framework is the name. You add a F# project to the solution. You reference the SomeComp.Framework project in the F# project. You insert a script ...
5
votes
3answers
646 views

Where can I get the F# Compiler and FSI v4.0?

I know I can download the "April CTP" to get F# 2.0 for .NET 2.0. But I need FSC and F# Interactive for .NET 4.0. On a machine with VS 2010 installed, it ends up in C:\Program Files (x86)\Microsoft ...
4
votes
1answer
110 views

F# Script SharePoint 2010 API doesn't work

I am trying something really simple in F# to try and test interaction with the SharePoint 2010 API. I think I am running into a general problem with F#. Is there anyway that an F# script can access ...
4
votes
1answer
146 views

Referencing an executable from F#

I've used F# to do some quick data-analysis using datastructures from another project. To do so, it needs access to this project; i.e. it needs an assembly reference - but the project is an ...
4
votes
2answers
165 views

Type inference & new - I'm probably just being stupid

Using F# 2.0 and FSI I have the following: let foo = List(xs)//works let bar = new List(xs) //need type parameter 'The type System.Collectsion.Generic<_> expects 1 type argument 0 was given ...
4
votes
1answer
186 views

F# light weight scripting enviorment

Im using F# to do a little scripting for automating tasks on our servers here. I would really love to have a light weight environment i could install on the servers themselves to give me FSI and ...
4
votes
1answer
407 views

How to Test C# Functions interactively with F# Interactive

I have a set of static utility methods including unit tests. But I'd like to have a more interactive way to employ a testing -> fixing -> compiling cycle (REPL) like in Lisp or Smalltalk where one can ...
4
votes
2answers
736 views

FSI.exe does not work under Ubuntu 10.10

Update: Tried November CTP release. Same error message. Forgot to mention that this server has the Ubuntu server edition installed. I don't have this issue on my Ubuntu desktop that runs Desktop ...
4
votes
2answers
233 views

Can fsi run with the 4.0 runtime on MAC OS and if so how do I configure it

Kinda self explanatory... I get a variety of errors when try to access 4.0 dlls in FSI. So rather than go through each one, I think the above question is the right one. This is a repost more or less ...
4
votes
2answers
220 views

What kind of application I develop using F# [closed]

Possible Duplicate: Where can F# actually save time and money? Hi Recently I have started looking into new language F#. My query is, still I am not able to realize what kind of ...
4
votes
3answers
379 views

F# interactive: Reference a project in currently open solution

I would like to use the F# interactive console with the projects in the currently open solution in Visual Studio 2010. Is there a quick and easy way to add a reference in the F# interactive console ...
4
votes
4answers
433 views

In Visual Studio 2010 pressing Alt + Enter should open F# Interactive?

In Visual Studio 2010 pressing Alt + Enter should open F# Interactive? I'm selecting F# code, and pressing Alt + Enter, but nothing happens!
4
votes
2answers
113 views

F# - Keep F# interactive from posting output

I'm working with F# interactive and I'm computing some large lists and arrays and I'd rather not have the interactive window post all of that information. Is there way to suppress output? ...
4
votes
1answer
74 views

change the format of the output results in F# interactive

Can i change the format of the output result which is returned when i call the variable name in FSI windows? I overrided the ToString() funcion in my object, but it does not affect the output results ...
4
votes
2answers
81 views

List.map fsi is telling ok, but can't build

Why this piece of code is working on my fsi, but can't build the project? I am using vs2010 and F# 2.0 ...Any ideas that I am missing something? let arg = [@"C:\Temp\bin"; @"C:\temp\xml"] arg|> ...
4
votes
1answer
589 views

Unload/unreference a referenced assembly from F# interactive

The F# Interactive (fsi.exe) has a directive to reference a given assembly: >#help;; [...] #r "file.dll";; Reference (dynamically load) the given DLL [...] I often like to ...
4
votes
1answer
252 views

Easy way to access private fields/methods/properties using f# interactive

F# interactive is a powerful development tool as it allows to run either WinForm or Wpf window and invoke arbitrary code in there. This gives a way for a 'try-before-you code' approach. Very often I ...
4
votes
3answers
959 views

In F#, How do I customize output of a custom type using printf?

I've read through a good chunk of Expert F# and am working on building an actual application. While debugging, I've grown accustomed to passing fsi commands like this to make things legible in the ...
3
votes
4answers
141 views

Find maximum, minimum and average in F#

I want to find maximum, minimum and average in an array without .NET in F#. I used this code but it is not working: let mutable max = 0 let arrX = [|9; 11; 3; 4; 5; 6; 7; 8|] for i in 0 .. ...
3
votes
3answers
296 views

How to force F# interactive to reference Gtk# by default?

I am mostly playing with F# on Linux and would like to get all the necessary GUI libraries (Gtk, Gdk, Atk, Glib, Pango, Cairo) to be referenced by default so that I can simply use: open Gtk;; ...
3
votes
3answers
287 views

in F# on MAC OSX and Ubuntu I get an error running FSI in 4.0

I need System.Numerics in F# EDIT I think the question is can fsi run with the 4.0 runtime and if so how do I configure it I run "mono /bin/Fsi" in the Fsharp 4.0 dir I get the following error in ...
3
votes
2answers
856 views

F# interactive shell (fsi) tutorial?

I'm learning F# with fsi on Mac OS X/mono, but it's hard to know what command to quit and out to shell. quit, or ^D doesn't work, ^C also doesn't work. What's the command to to stop the fsi? In ...
3
votes
1answer
359 views

F# - Display full results in F# interactive window

Disclaimer: Total F# Newbie question! If I type the following into an F# file in Visual Studio #light let squares = seq { for x in 1 .. 10 -> x * x } printf "%A" squares and run F# ...
2
votes
2answers
181 views

Mono, F# libraries not working under Mac OSX

I have a very simple question. I tried to google it, but to no avail. I installed Mono and F# with Macports in OSX. There are some bugs in F# interactive, but still it's usable if you call it from ...
2
votes
1answer
75 views

How to change F# Interactive newline character

In a .fs file a newline is denoted by \r\n, but in the F# Interactive window it is \n. In a problem I'm currently trying to solve, the length of a multiple line literal string matters. So a problem ...
2
votes
2answers
133 views

Is there any way to force load a module when it is opened through FSI?

If I compile the following module into a dll namespace MyNs module SomeModule = do printfn "module loading" let x = 23 then reference the dll in FSI and execute the command open ...
2
votes
1answer
99 views

Setting ExitCode in self-hosted F# script

I am hosting the FSI.exe in my build tool ("FAKE - F# Make") and I need to set the ExitCode for FSI.exe from inside my fsx-script. Is this possible? At the moment I am raising errors in the F# build ...
2
votes
3answers
161 views

Error FS0752 in F# declaration of a map over list of functions

I would like to execute a list of functions over a list of corresponding values: let f1 x = x*2;; let f2 x = x+70;; let conslist = [f1;f2];; let pmap2 list1 list2 = seq { for i in 0..1 do ...
2
votes
1answer
253 views

F#: String.Join and |> operator

In F# interactive, I can use String.Join("+", ["a"; "b"]) successfully, but ["a"; "b"] |> String.Join "+" produces an error: Script1.fsx(79,15): error FS0001: This expression was expected to ...
2
votes
3answers
280 views

How do I use breakpoints in F# interactive?

I've started researching some ideas in algorithms using VS2010 and F# interactive. So, I've created a DebugScript.fsx, I write some code there and eventually send it to F#Int to test it. At some ...
2
votes
6answers
355 views

Type mismatch error. F# type inference fail?

I'm trying to write a method in F# that returns a new instance of a generic type based upon the type of a value passed into the method. In FSI: open System.Collections.Generic type ...
2
votes
0answers
178 views

Is there a better way to reference an F# project assembly from a script? [closed]

Possible Duplicate: F#/C# - fsx Script Files and Project References I have moved some F# files into a different project, and now referencing them from an F# script looks quite ugly. Here's ...
2
votes
1answer
113 views

Get description of types in F# Interactive?

Can I get FSI.exe, the F# Interactive tool, to describe a type for me? In other words, there is a type I know how to access (specifically, IExpression in the Infer.NET library) but I do not know which ...
2
votes
1answer
138 views

grid command in F# Interactive window

So I installed F# and I'm running VS 2008. I'm following along on a video tutorial the microsoft guys put on awhile ago. At one point, he wants to throw his output to a grid window and types grid ...
2
votes
1answer
114 views

How do I change colors for the F# interactive shell in Visual Studio 2010

Like http://stackoverflow.com/questions/316161/how-do-i-change-colors-for-the-f-interactive-shell, but Visual Studio 2010 (RTM) this time. I tried changing the "Read-Only Region" background color, ...
2
votes
1answer
112 views

How to do typeof of a module in a fsx file?

Let's say I have a Foo.fsx script that contains this code: module Bar = let foobar = "foo"+"bar" open Bar let a = System.Reflection.Assembly.GetExecutingAssembly() let ty = a.GetType("Foo.Bar") // ...
2
votes
5answers
504 views

Need help regarding Async and fsi

I'd like to write some code that runs a sequence of F# scripts (.fsx). The thing is that I could have literally hundreds of scripts and if I do that: let shellExecute program args = let startInfo ...
2
votes
2answers
239 views

How to diagnose source of failure in F# interactive

I am learning the ropes of F# through Project Euler, and ran into the following issue a few times. I write a function, run it in the F# interactive window, and the program hangs there. I suspect the ...
1
vote
1answer
128 views

Include files in an FSX file?

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.
1
vote
0answers
137 views

F# interactive - “reset session” hotkey

I have assigned a new Global hotkey to VS 2010/Options/Environment/Keyboard/OtherContextMenus.FSIConsoleContext.ResetSession But it seems to work only in the FSI window. How can I make the ...
1
vote
1answer
91 views

FSharpChart.Column with a label on easy column

I've been using the F# charting library for a bit of interactive charting. It's really nice for showing charts of data really quickly but the lack of documentation is a little frustrating. For example ...
1
vote
1answer
128 views

Type reference error using F# interactive

I have a solution consisting of 2 projects: Utilities - This project contains type MyMatlab and references a COM (TLP) reference Matlab Application (Version 7.11) Type Library LBM - This project ...
1
vote
2answers
182 views

module in F# interactive startup file

I have a finit.fsx file to be load at fsi.exe startup like: #r xxxx type xx = xxx module Util = let cd path = xxxx ... After start fsi.exe, it is loaded as namespace FSI_0002 module Util ...
1
vote
1answer
303 views

F# Mapping Regular Expression Matches with Active Patterns

I found this useful article on using Active Patterns with Regular Expressions: http://www.markhneedham.com/blog/2009/05/10/f-regular-expressionsactive-patterns/ The original code snippet used in the ...
1
vote
1answer
115 views

F# launch a script from another script with F# Interactive

I can't seem to find a way to do this. Basically I want to do this in pseudocode: MainScript.fsx: printfn "starting an external script" launch Script1.fsx printfn "Finished" ...
1
vote
2answers
185 views

F# Interactive Developement DirectoryNotFoundException: Could not find a part of the path 'C:\Users\Bob\AppData\Local\Temp\MyFolder\'

When using F# interactive apparently this line of code will search in the path shown in the subject line. let files = Directory.GetFiles("MyFolderPath") Is there any way to set interactive to ...

1 2