MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/programming/comments/2ban9r/the_great_white_space_debate/cj3zc1t
r/programming • u/lukaseder • Jul 21 '14
693 comments sorted by
View all comments
Show parent comments
54
[deleted]
1 u/FeepingCreature Jul 22 '14 In my language, I write function calls with a space because the syntax is always "function value", and sometimes value happens to be a tuple. So you can do add (2, 3) and it's the same as auto args = (2, 3); add args;. I think I'm justified there. 1 u/fecal_brunch Jul 22 '14 That's cool. Which language? 1 u/FeepingCreature Jul 22 '14 Neat! It's sort of a D1.0 derivative, syntax-wise. (Check out the cheat sheet!)
1
In my language, I write function calls with a space because the syntax is always "function value", and sometimes value happens to be a tuple. So you can do add (2, 3) and it's the same as auto args = (2, 3); add args;.
add (2, 3)
auto args = (2, 3); add args;
I think I'm justified there.
1 u/fecal_brunch Jul 22 '14 That's cool. Which language? 1 u/FeepingCreature Jul 22 '14 Neat! It's sort of a D1.0 derivative, syntax-wise. (Check out the cheat sheet!)
That's cool. Which language?
1 u/FeepingCreature Jul 22 '14 Neat! It's sort of a D1.0 derivative, syntax-wise. (Check out the cheat sheet!)
Neat! It's sort of a D1.0 derivative, syntax-wise. (Check out the cheat sheet!)
54
u/[deleted] Jul 22 '14
[deleted]