Click here to Skip to main content
15,888,315 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: The most unappreciated work Pin
Bruce Patin17-Aug-20 3:17
Bruce Patin17-Aug-20 3:17 
GeneralGood grief - at last! Grand Tour S04E02 release date. Pin
OriginalGriff15-Aug-20 11:21
mveOriginalGriff15-Aug-20 11:21 
QuestionIs a programming language's aesthetics important? Pin
Marc Clifton15-Aug-20 11:05
mvaMarc Clifton15-Aug-20 11:05 
AnswerRe: Is a programming language's aesthetics important? Pin
Greg Utas15-Aug-20 12:00
professionalGreg Utas15-Aug-20 12:00 
GeneralRe: Is a programming language's aesthetics important? Pin
Stuart Dootson16-Aug-20 22:48
professionalStuart Dootson16-Aug-20 22:48 
GeneralRe: Is a programming language's aesthetics important? Pin
Greg Utas17-Aug-20 0:37
professionalGreg Utas17-Aug-20 0:37 
GeneralRe: Is a programming language's aesthetics important? Pin
Dan Neely17-Aug-20 2:23
Dan Neely17-Aug-20 2:23 
AnswerRe: Is a programming language's aesthetics important? Pin
Jon McKee15-Aug-20 12:42
professionalJon McKee15-Aug-20 12:42 
I love thinking about random stuff like this Thumbs Up | :thumbsup:

1) As long as the language's syntax is easy for my eyes to parse quickly after learning it, I'm cool with it. The only languages I really don't enjoy are the ones that use keywords for structural information. It makes them harder to read in my opinion because there's no categorical distinction between functional and structural elements.
VB
public class Example
    public property Info as string
end class

dim specificExample as Example
is way harder to parse than
C#
public class Example
{
    public string Info { get; set; }
}

Example specificExample;
in my opinion. It gets downright silly when you start adding more complexity like manually-implemented properties, methods, etc.

2) Yes, for practical reasons. If a language is difficult to read it will take longer to maintain and be more prone to developer error.

3) C#, F#, Typescript, and C++ come to mind as languages I've enjoyed working in. I will say though C++'s types have never made sense to me. Why, in a language designed to read left-to-right, does the type read right-to-left?
C++
int const * * const example; //constant pointer to a pointer to a constant integer

EDIT: Typo in the VB code Sigh | :sigh:
EDIT2: Removed the specificity of #3's example given the comment.

modified 17-Aug-20 15:13pm.

GeneralRe: Is a programming language's aesthetics important? Pin
englebart17-Aug-20 7:35
professionalenglebart17-Aug-20 7:35 
GeneralRe: Is a programming language's aesthetics important? Pin
Jon McKee17-Aug-20 8:39
professionalJon McKee17-Aug-20 8:39 
PraiseRe: Is a programming language's aesthetics important? Pin
englebart17-Aug-20 9:31
professionalenglebart17-Aug-20 9:31 
GeneralRe: Is a programming language's aesthetics important? Pin
Jon McKee17-Aug-20 10:50
professionalJon McKee17-Aug-20 10:50 
GeneralRe: Is a programming language's aesthetics important? Pin
harold aptroot15-Aug-20 13:47
harold aptroot15-Aug-20 13:47 
AnswerRe: Is a programming language's aesthetics important? Pin
Ravi Bhavnani15-Aug-20 15:35
professionalRavi Bhavnani15-Aug-20 15:35 
AnswerRe: Is a programming language's aesthetics important? Pin
CodeWraith15-Aug-20 15:48
CodeWraith15-Aug-20 15:48 
AnswerRe: Is a programming language's aesthetics important? Pin
Amarnath S15-Aug-20 15:50
professionalAmarnath S15-Aug-20 15:50 
AnswerRe: Is a programming language's aesthetics important? Pin
Gary R. Wheeler16-Aug-20 2:14
Gary R. Wheeler16-Aug-20 2:14 
AnswerRe: Is a programming language's aesthetics important? Pin
theoldfool16-Aug-20 2:32
professionaltheoldfool16-Aug-20 2:32 
GeneralRe: Is a programming language's aesthetics important? Pin
Greg Utas16-Aug-20 3:37
professionalGreg Utas16-Aug-20 3:37 
AnswerRe: Is a programming language's aesthetics important? PinPopular
Chris Maunder16-Aug-20 4:38
cofounderChris Maunder16-Aug-20 4:38 
GeneralRe: Is a programming language's aesthetics important? Pin
Nelek16-Aug-20 5:15
protectorNelek16-Aug-20 5:15 
GeneralRe: Is a programming language's aesthetics important? Pin
theoldfool16-Aug-20 5:39
professionaltheoldfool16-Aug-20 5:39 
AnswerRe: Is a programming language's aesthetics important? Pin
Stuart Dootson16-Aug-20 22:46
professionalStuart Dootson16-Aug-20 22:46 
AnswerRe: Is a programming language's aesthetics important? Pin
Bruce Patin17-Aug-20 3:24
Bruce Patin17-Aug-20 3:24 
AnswerRe: Is a programming language's aesthetics important? Pin
W Balboos, GHB17-Aug-20 5:40
W Balboos, GHB17-Aug-20 5:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.