oguz-ismail 2 days ago

>whitespace is significant, like in Python

hard pass

5
110bpm 2 days ago

This isn't such a big issue in my experience. Auto-formatting helps a lot, the code needs to be just syntactically correct.

The default F# autoformatter is bundled/supported by VS Code, VS and Rider [0].

[0]: https://fsprojects.github.io/fantomas/docs/end-users/StyleGu...

int_19h 2 days ago

F# has both "lightweight" (indentation-based) and "verbose" syntax. If you don't like significant whitespace, you can just use the latter.

https://learn.microsoft.com/en-us/dotnet/fsharp/language-ref...

sundarurfriend 2 days ago

That's an interesting idea and implementation.

I don't think being whitespace-significant is a "hard pass" dealbreaker, but as someone who's not a fan of it, I'd say this only goes a small way towards alleviating that - like most "choose your preferred syntax" designs. Even if you're a lone-wolf developer, you're gonna end up reading a lot of example code and other material that's in the ugly whitespace-sensitive style, given that:

> The verbose syntax is not as commonly used ... The default syntax is the lightweight syntax.

And most people in practice are not lone-wolf devs, and so the existence of this syntax helps them even less.

voidUpdate 2 days ago

I was with it until I heard no braces :/

pjc50 2 days ago

I have some good news for you about C#.

voidUpdate 2 days ago

I love C#, its a great language

ahoka 2 days ago

Perfect for blub programmers!

BeetleB 2 days ago

C# doesn't require braces...?

lunarlull 2 days ago

You never touch python code either?

oguz-ismail 1 day ago

not since they binned 2.7

fire_lake 2 days ago

Static typing removes the downside of whitespace.

Oh, and every language with line comments (so most of them) has significant whitespace.

AnimalMuppet 2 days ago

> Static typing removes the downside of whitespace.

How so?

> Oh, and every language with line comments (so most of them) has significant whitespace.

Technically true, but that's not what people mean by "significant whitespace" in this context. So you're being pedantic rather than saying anything meaningful.

But you made me think. The ultimate nightmare would be significant trailing whitespace - the spaces and/or tabs after all the visible characters change the meaning of the line.

Akronymus 1 day ago

In f#'s case, there is the trifecta of everything being an expression, static typing and default immutability. This means you often write code like this:

let foo = if bar then baz else someDefault

Due to it being an expression you assign what the if evaluates to to foo. Due to static typing, the compiler checks that both branches return the same type. Due to the default immutability you don't declare and assign in separate steps. What this results in, is that accidentally using the wrong indentation for something usually results in an error at compile time, at the latest.

Compared to how python does significant whitespace is that it's dynamic typing + statement based, which means you can easily end up assigning different types to the same variable in different branches of an if, for example.

I hope I explained it in understandable terms

fire_lake 1 day ago

Pythons approach to variable declarations makes this doubly bad.

Akronymus 1 day ago

Tbh, I've been successful enough in avoiding using python that I don't know the specifics of that.

fire_lake 2 days ago

> How so?

Well I don’t know what issue you have with whitespace, but the usual complaint is that programs with small typos are syntactically valid but logically incorrect. This is why CoffeeScript became so disliked. A static type checker makes this scenario much less likely since it won’t compile.

I would also add that F# has some indentation rules (“offside rules”) and tabs are disallowed, further shrinking the input space.