Tagged Questions
9
votes
3answers
357 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
223 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
331 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
510 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
2answers
127 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?
...
5
votes
3answers
684 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
126 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
148 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
172 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
188 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
425 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
780 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
246 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
227 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
2answers
922 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 ...
4
votes
3answers
411 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
467 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
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
606 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
255 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
990 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
2answers
95 views
How to clear screen in F# interactive in VS2010?
Is there any way to clear the F# interactive window in VS2010?
#cls;; and #clear;; don't work.
Quitting with #quit;; leads to the restart of F# interactive without clearing the window content.
...
3
votes
4answers
154 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
308 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
299 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
1answer
371 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
1answer
73 views
Can I run fsx files from within Visual Studio without setting up a project?
I want to use F# for some very basic tasks for which I previously used batch files. I can associate fsx files with fsi.exe and run it just by double clicking them. That's great so far.
However, ...
2
votes
1answer
88 views
how to add third party dll reference to F# project?
I'm adding a third party dll reference to my F# project. I added the dll in references and when I use this i.e highlight the code and do Alt+Ent, I get the error "The namespace or module 'AZROLESLib' ...
2
votes
3answers
133 views
Why is “;;” required in F# interactive?
Why is ";;" required in F# interactive at the end of a command? For instance, IronPython doesn't require it?
EDIT:
When do you put double semicolons in F#?
covers most of the historical background
I ...
2
votes
2answers
197 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
78 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
136 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
102 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
166 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
258 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
4answers
320 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
376 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
188 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
115 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
147 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
118 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
116 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
512 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
242 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
2answers
87 views
Using a license.licx file with an F# script?
We have a library written in C# that I'm trying to call within an F# script. However, this library uses dotConnect for MySQL from DevArt which requires that the program using it has a particular line ...
1
vote
1answer
137 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
145 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
94 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 ...