←back to thread

Why F#?

(batsov.com)
438 points bozhidar | 2 comments | | HN request time: 0.442s | source
Show context
amelius ◴[] No.43546218[source]
I have a few questions. Can it do GUIs well? How about mobile? And how does it compare to e.g. Scala?
replies(6): >>43546276 #>>43546358 #>>43546479 #>>43546584 #>>43546812 #>>43550529 #
1. munchler ◴[] No.43546276[source]
It can do GUIs well, although it takes some finesse to manage user state in an immutable-first language. Check out Fable for building web apps: https://fable.io/

I don't have much experience with Scala, but I think the two languages are pretty comparable in their respective ecosystems. The biggest difference I'm aware of is that Scala has typeclasses and F# does not.

replies(1): >>43549080 #
2. int_19h ◴[] No.43549080[source]
F# is not really that strong on immutability, though. Sure, variables and struct fields are immutable by default, but making them mutable is one keyword away. Similarly with classes - declaring readonly properties is more concise, but when you need a read/write one, it's readily available.