What is declarative programming? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers. Closed 6 years ago. Locked. This question and its answers are locked because the question is off-topic but has historical significance. It is not currently accepting new answers or interactions. I keep hearing this term tossed around in several different contexts. … Read more

Best explanation for languages without null

Every so often when programmers are complaining about null errors/exceptions someone asks what we do without null. I have some basic idea of the coolness of option types, but I don’t have the knowledge or languages skill to best express it. What is a great explanation of the following written in a way approachable to … Read more

Language Books/Tutorials for popular languages

Locked. This question and its answers are locked because the question is off-topic but has historical significance. It is not currently accepting new answers or interactions. It wasn’t that long ago that I was a beginning coder, trying to find good books/tutorials on languages I wanted to learn. Even still, there are times I need … Read more

Why functional languages? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 8 years ago. Improve this question I see a lot of talk on here about functional languages and stuff. Why would … Read more

What are five things you hate about your favorite language? [closed]

Closed. This question is off-topic. It is not currently accepting answers. Closed 11 years ago. Locked. This question and its answers are locked because the question is off-topic but has historical significance. It is not currently accepting new answers or interactions. There’s been a cluster of Perl-hate on Stack Overflow lately, so I thought I’d … Read more

What’s the name for hyphen-separated case?

This is PascalCase: SomeSymbol This is camelCase: someSymbol This is snake_case: some_symbol So my questions is whether there is a widely accepted name for this: some-symbol? It’s commonly used in url’s. 15 s 15 There isn’t really a standard name for this case convention, and there is disagreement over what it should be called. That … Read more

What is the difference between statically typed and dynamically typed languages?

I hear a lot that new programming languages are dynamically typed but what does it actually mean when we say a language is dynamically typed vs. statically typed? 17 s 17 Statically typed languages A language is statically typed if the type of a variable is known at compile time. For some languages this means … Read more