0
votes
0answers
3 views
How can call instance by COM?
I try to call skype instance by COM on F#.
A aim is get mood message.
test.fs
type SKYPE4COM =
new() = new SKYPE4COM()
let GetMood =
let aSkype = new SKYPE4COM
mood <- …
3
votes
2answers
62 views
Is there a site which offers an interactive F# shell?
Is there a site like try ruby that allows one to experiment in an F# interactive shell? I'd like to try a few commands without installing Visual Studio or Mono.
7
votes
5answers
178 views
F#: Is the “fun” keyword necessary?
I was typing the "fun" keyword and then I remembered you don't have to in C#
Wouldn't this:
List.map (x -> x + 1) [1..10]
Be just as expressive as this?:
List.map (fun x -> x + 1) [1..10]
…
1
vote
3answers
103 views
Haskell List Comprehensions guards in F#
What is a way to implement similar functionality in Haskell of List comprehensions with guards in F#
for example:
factors :: Int -> [Int]
factors = [x | x <-[1 .. n], n 'mod' x == …
3
votes
2answers
53 views
Should all the identifiers of static properties with accessors start with uppercase letters?
I can't see anywhere that this should be the case, but I get an "Invalid declaration syntax" error in the get everytime I declare a static property that does not start with an uppercase letter. E.g:
…
1
vote
2answers
43 views
Is it possible to define different attributes for recursive classes in F#
I want to declare two classes that are associated, therefore I am declaring them together linked by an 'and'. Each has different attributes but this code is not working ("Unexpected keyword 'and' in …
1
vote
2answers
59 views
F# Generate SQL from CSV
I have recently been learning F# and functional programming. One application I have found very useful is generating SQL inserts for a data load from a CSV (or excel table) with some associated ID's.
…
1
vote
1answer
68 views
Using tuples in conditional breakpoints in Visual Studio 2010
Will this be possible? In F# or C#? Both?
For example, I would like to set a conditional breakpoint in a F# program like that:
[x] Condition:
myTuple == (3,3)
(o) Is true
(_) Has changed
…
1
vote
2answers
44 views
Custom computation expressions in F#
I've been toying with monads in F# (aka computation expressions) and I wrote this simple Identity monad:
type Identity<'a> =
| Identity of 'a
type IdentityBuilder() =
member x.Bind …
1
vote
2answers
92 views
Haskell to F# - declare a recursive types in f#
I am trying to teach my self F# by porting some Haskell Code.
Specifily I am trying to port the Countdown Problem shown here
The Haskell Code is listed here
I am trying to create the following …
2
votes
3answers
128 views
How do you curry the 2nd (or 3rd, 4th, …) parameter in F# or any functional language?
I'm just starting up with F# and see how you can use currying to pre-load the 1st parameter to a function. But how would one do it with the 2nd, 3rd, or whatever other parameter? Would named …
1
vote
1answer
81 views
Running F# on Mono [closed]
Possible Duplicate:
How to get F# working with Mono?
Will future versions of F# be made available for Mono? Is the current version?
2
votes
1answer
94 views
A Simple Wrapper for F# to do matrix operations
Hi there!
This is a relatively long post. F# has a matrix and vector type(in PowerPack not in the Core) now. This is great! Even Python's numerical computing ability is from the third part.
But the …
0
votes
1answer
71 views
This F# code is not working
This is not working...
I get error FS0001: The type 'string' is not compatible with the type 'seq'
for the last line. Why?
let rec Parse (charlist) =
match charlist with
| head :: tail -> …
5
votes
4answers
167 views
In F# what does the >> operator mean?
I noticed in some code in this sample that contained the >> operator:
let printTree =
tree >> Seq.iter (Seq.fold (+) "" >> printfn "%s")
What does the >> operator mean/do?
Thanks …
