16
votes
47answers
4k views
Is there a human readable programming language?
I mean, is there a coded language with human style coding?
For example:
Create an object called MyVar and initialize it to 10;
Take MyVar and call MyMethod() with parameters. . .
I know it's not so …
8
votes
6answers
150 views
Appropriate article (a/an) in String.Format
I'm looking for a culturally-sensitive way to properly insert a noun into a sentence while using the appropriate article (a/an). It could use String.Format, or possibly something else if the …
8
votes
11answers
3k views
Backslash vs. Forward Slash
Just wanted to confirm this. It bugs me every time I hear a television or radio commercial where the announcer says go to "blah-blah dot com backslash homepage".
\ = Backslash
/ = Forward Slash
…
7
votes
11answers
1k views
Login or Log in?
Is there accepted terminology for the process of logging in?
As a verb, would you say "Go to the website and log in", or "Go to the website and login"?
As an adjective, would you say "Click on the …
6
votes
4answers
366 views
Where can I find C# 3.0 grammar?
I'm planning to write a C# 3.0 compiler in C#. Where can I get the grammar for parser generation?
Preferably one that works with ANTLR v3 without modification.
6
votes
4answers
197 views
Why can’t I assign @b || @c to @a in Perl?
I'd like to perform some convoluted variation of the @a = @b || @c assignment, with the intent of taking @b if non-empty (hence true in a boolean sense), @c otherwise. The documentation explicitely …
6
votes
9answers
301 views
What is the best book for Programming Language Theory?
What is a good book that covers the topics of grammars (context-free and context-sensitive) and their notations (EBNF, BNF, etc), syntax, type and programming language theory, etc?
I'm not really …
6
votes
4answers
1k views
Repository of BNF Grammars?
Is there a place I can find Backus–Naur Form or BNF grammars for popular languages? Whenever I do a search I don't turn up much, but I figure they must be published somewhere. I'm most interested in …
6
votes
8answers
1k views
Looking for a Complete Delphi (object pascal) syntax
I need a complete Object Pascal syntax (preferably Delphi 2009). Some of the syntax is given by the help files, but not all information is provided. So I started collecting loose bits of information. …
6
votes
19answers
991 views
Is there a meaningful correlation between spelling and programming ability?
Is there a meaningful correlation between spelling and grammatical ability, and programming ability?
5
votes
4answers
408 views
Open Source Grammar Checker
For an online project I'm working on, I am looking for a open source grammar checker. I have searched Google, with some good results (http://www.link.cs.cmu.edu/link/, etc), but I am wondering what …
5
votes
4answers
400 views
Why is SQL’s grammar inside-out?
In just about any formally structured set of information, you start reading either from the start towards the end, or occasionally from the end towards the beginning (street addresses, for example.) …
5
votes
4answers
215 views
Why do programmers not write a couple extra lines of code to avoid the grammar error “1 times” [closed]
Why is it that even the StackOverflow programmers don't take an extra 2 minutes and write a function so that the user sees:
1 time
2 times
3 times
etc.
something like:
string message = …
5
votes
7answers
1k views
Lisp grammar in yacc
I am trying to build a Lisp grammar. Easy, right? Apparently not.
I present these inputs and receive errors...
( 1 1)
23 23 23
ui ui
This is the grammar...
%%
sexpr: atom …
5
votes
6answers
862 views
Grammar Writing Tools
I am trying to write a grammar in EBNF (barring a really good reason, it has to be EBNF) and am looking for a couple of utilities for it - if there's a GUI interface that can make one, that would be …
