Tagged Questions
59
votes
7answers
2k views
Why does C# allow {} code blocks without a preceding statement?
Why does C# allow code blocks without a preceding statement (e.g. if, else, for, while)?
void Main()
{
{ // any sense in this?
Console.Write("foo");
}
}
40
votes
5answers
2k views
Why are C# 3.0 object initializer constructor parentheses optional?
It seems that the C# 3.0 object initializer syntax allows one to exclude the open/close pair of parentheses in the constructor when there is a parameterless constructor existing. Example:
var x = new ...
29
votes
13answers
1k views
Suggestions on syntax to express mathematical formula concisely
I am developing functional domain specific embedded language within C++ to translate formulas into working code as concisely and accurately as possible.
I posted a prototype in the comments, it is ...
18
votes
24answers
2k views
What would your own programming language look like?
What would your own (I assume perfect) programming language look like? Give a small example and explain your novel ideas!
I'm really interested in the syntax.
16
votes
37answers
1k views
What are your language “hangups”? [closed]
I've read some of the recent language vs. language questions with interest... Perl vs. Python, Python vs. Java, Can one language be better than another?
One thing I've noticed is that a lot of us ...
15
votes
8answers
593 views
Pointer syntax in C: why does * only apply to the first variable?
The following declaration in C:
int* a, b;
will declare a as type int* and b as type int. I'm well aware of this trap, but what I want to know is why it works this way. Why doesn't it also declare ...
14
votes
1answer
2k views
Why does a collection initializer expression require IEnumerable to be implemented?
Why does this generate a compiler error:
class X { public void Add(string str) { Console.WriteLine(str); } }
static class Program
{
static void Main()
{
// error CS1922: Cannot ...
14
votes
8answers
731 views
Why do Perl control statements require braces?
This may look like the recent question that asked why Perl doesn't allow one-liners to be "unblocked," but I found the answers to that question unsatisfactory because they either referred to the ...
12
votes
6answers
707 views
Why is 'last' called 'last' in Perl?
What is the historical reason to that last is called that in Perl rather than break as it is called in C?
The design of Perl was influenced by C (in addition to awk, sed and sh - see man page below), ...
11
votes
7answers
369 views
What other programming languages have a Smalltalk-like message-passing syntax?
What languages are there with a message-passing syntax similar to Smalltalk's? Objective-C is the only one I'm familiar with. Specifically, I was wondering if any other language implementations exist ...
9
votes
6answers
182 views
Which syntax options/language features did Scala remove over time (and why)?
The title pretty much sums up my question.
The deprecation and removal of case class inheritance is a pretty new one, and I wonder which things got removed/substantially changed before that. I ...
9
votes
5answers
464 views
Has the C# spec (team? committee?) ever considered this object creation syntax?
I've never posted a question of this nature before, so if it's not proper for SO, just don't hurt my feelings too bad and I'll delete it.
In the interest of keeping everything I care about as close ...
8
votes
2answers
250 views
When to use “ ” ( space ) and when to use . ( dot ) when invoking methods in Scala?
I've seen Scala using both interchangeably, but I don't know when to use one or the other.
Is there a convention?
For instance these are equivalent
"hello" toString
and
"hello".toString()
...
7
votes
2answers
600 views
PEG for Python style indentation
How would you write a Parsing Expression Grammar in any of the following Parser Generators (PEG.js, Citrus, Treetop) which can handle Python/Haskell/CoffeScript style indentation:
Examples of a not ...
7
votes
4answers
638 views
History of trailing comma in programming language grammars
Many programming languages allow trailing commas in their grammar following the last item in a list. Supposedly this was done to simplify automatic code generation, which is understandable.
As an ...
6
votes
1answer
157 views
Scheme core language specification
I am learning my way around Scheme, and I am especially interested in how the language is constructed. I'm trying to find a nice description of the core syntax for a Scheme implementation. I don't ...
6
votes
9answers
1k views
Natural Programming Language… what would you like to see?
I am looking at writing a compiler and after I complete something in a "C" style I am looking at adapting it to other models. What are some syntactical constructs you would expect to see in a ...
5
votes
19answers
514 views
What makes a language readable or not readable?
I heard people say they can understand their python code a year later but not their XYZ code. Why? I dont know what is good about python syntax or what is bad about another. I like C# but i have a ...
3
votes
1answer
41 views
Why support comparison between different data types based on (seemingly) arbitrary rules?
my questions is, "Why would a language designer consider allowing comparison between different data types?". Also, does this make more sense in a functional language?
For example, in erlang one can ...
3
votes
3answers
664 views
Purpose of Scala's Symbol? [closed]
Possible Duplicate:
What are some example use cases for symbol literals in Scala?
What's the purpose of Symbol and why does it deserve some special literal synatx e. g. 'FooSymbol?
3
votes
2answers
129 views
What syntax sugar or language features makes a language hard/tough to parse?
I did some searching and didn't find a question that "directly" answered this question.
Anyway the basic gist of this question is I am wondering what "language feature" or "syntax" that makes a ...
3
votes
1answer
246 views
Syntax choice for type parameter variance in C# and VB
In both C# and VB, type parameter modifiers are used to express the variance of type parameters. For example, the C# version looks like:
interface Foo<in X, out Y> { }
and the VB version ...
3
votes
4answers
2k views
Why Python language does not have a writeln() method?
If we need to write a new line to a file we have to code:
file_output.write('Fooo line \n')
Are there any reasons why Python not has a writeln() method?
3
votes
3answers
88 views
Choosing a syntax for list generating expressions
C# has generator functions which have syntax like:
IEnumerable<int> GetNats(int max)
{
for (int i=0; i < max; ++i)
yield return i;
}
A feature I am interested in for my ...
2
votes
7answers
322 views
Why does CSS use colons “:” in rules?
CSS properties use no spaces so why isn't the first space in the rule used as a separator between the property and the value?
Here's an example:
2
votes
4answers
78 views
What is the value in having several, equally abstract, syntactic variations for coding something?
I am currently reading up on Ruby. I think it is a nice language, but I am a bit bothered by having so many equivalent ways, that are only slightly different in syntax, for coding the same action. For ...
2
votes
6answers
56 views
Template/generic syntax character
I'm designing a syntax for templates/generics. The C++ family languages use angle brackets for this, but I'm looking at using a separator character instead. For example, where in Java you might write:
...
2
votes
5answers
911 views
Why does Java not have block-scoped variable declarations?
The following method does not work because the inner block declares a variable of the same name as one in the outer block. Apparently variables belong to the method or class in which they are ...
1
vote
1answer
97 views
Is there a parser generator that can use the Wirth syntax?
ie: http://en.wikipedia.org/wiki/Wirth_syntax_notation
It seems like most use BNF / EBNF ...
1
vote
1answer
383 views
Converting mathematical formula into an programmatic algorithm
I'm working on converting a mathematical formula into a program. This formula is called as optimal pricing policy for perishable products. I've seen this in an article and it is called ...
1
vote
2answers
99 views
Brackets and international keyboards
Most programming languages use parentheses for grouping subexpressions.
In Aklo, I'm using square brackets for grouping subexpressions, on the grounds that the precious unshifted brackets should be ...
1
vote
3answers
558 views
Semicolon after classes and structs [closed]
Possible Duplicate:
Why must I put a semicolon at the end of class declaration in C++?
Found duplicate, vote to close please.
Why do classes and structs have to be concluded with semicolon ...
1
vote
6answers
871 views
Which is more readable/writable—code that uses keywords for declarations or code that uses typographical symbols?
I'm implementing a programming language and I'm considering the following syntax:
@NamespaceX
{
+@ClassY <> : BaseTypeA
{
+@NestedClassW<>
{
}
...
1
vote
7answers
294 views
Why does this string initialization in an if statement prevent me from printing?
i have little problem with if
{
string nom;
string ou;
nom = "1";
if (nom == "1")
{
nom +=1;
ou = nom;
}
Console.Write(ou);
}
but i cant print ou value ...
1
vote
3answers
226 views
Combined post-operators?
We're all familiar with the pre- and post-increment operators, e.g.
c++; // c = c + 1
++c; // ditto
and the "combined operators" which extend this principle:
c += 5; // c = c + 5
s .= ", ...
0
votes
2answers
156 views
Ruby Assignment Syntax
A silly, syntactical question:
If the assignment operator is really a function, like
def value=(x)
@value = x
end
without a space between the left-hand operand and the "=", then why can the ...
0
votes
1answer
88 views
Naming conventions [closed]
Possible Duplicate:
What are the best naming conventions you've used?
This is not about a matter of opinion, it's about the merit of choosing suitable given the context names. I don't ...
0
votes
9answers
463 views
Is there a programming language that allows variable declaration at call site?
Update 2: examples removed, because they were misleading. The ones below are more relevant.
My question:
Is there a programming language with such a construct?
Update:
Now when I think about it, ...
-2
votes
1answer
54 views
Syntax Debate: Type id to the left or right of var id?
What are the pros/cons that go with the two common variable declaration syntax that many popular languages use, such as:
int foo = 0;
and
foo:int = 0;
One problem I have with the second ...