vote up 3 vote down star
2

Which programming language has the least amount of syntax? How can I calculate how many syntax a programming language has?

Thanks.

flag
2  
@Bubba, define syntax? – Sam Saffron Jul 4 at 8:41
1  
To calculate how "many" syntax a programming language has, you may look at a language's grammar. The more grammar, the more syntax it has. – SuperBloup Jul 4 at 8:42
3  
This is a serious question! I have reading dis order. Not everyone on this planet is as gifted as those who can write Hello World in BrainFuck! – Bubba Jul 4 at 8:50
1  
I think he means which language provides the fewest grammatical constructs to create code. – RCIX Jul 4 at 10:58
1  
This is a good question, actually: 15%-20% of the population are dyslectic, this way or another; In addition, the less grammer a language have, the faster and a more readable code you produce, making it easy to maintain. – Berry Tsakala Jul 4 at 11:24
show 2 more comments

11 Answers

vote up 0 vote down

The parsing of Jot can be done using only 5 characters: the [01]* regex is a full description of all and only legal programs.

link|flag
vote up 0 vote down

As far as I can tell, I tried :

  • Assembly;
  • C/C++;
  • Java;
  • C#;
  • PHP;
  • Java;
  • Python;
  • Ruby;
  • Bash;
  • Perl.

Excepting bash, wich I do not even thing about when it comes to programming more that scripting, Perl has the shortest syntax, but it's one of the slowest to read.

Assembly, C/C++, and Java are really Verbose. C# and PHP less, but still. And you are stuck with .Net or with a language with no naming convention.

The best balance between being concise, powerful and readable are Ruby and Python.

I am a Python lover myself, and I'm use to the syntax so I'll go for it. I don't like the way Ruby ends blocks using keywords.

link|flag
vote up 0 vote down

Most modern languages have relatively few keywords and operators. They usually have some way of indicating a logic block. The problem is that fewer keywords and operators don't usually mean easier to read and understand code - just look at BrainFuck - 4 operators, no keywords and pretty useless.

More 'natural' languages are more verbose and have a lot of syntax, but can be easier for a beginner.

Java, C#, Javascript and loads more languages share the same basic syntax. They all have their own extra keywords and operators, but if you're going to learn one basic syntax their's is where to start - if you can code in one you can read the others.

link|flag
vote up 2 vote down

If I guess your purpose correctly, Python has no more or less "syntax" than any other language, but it has less "strange funny symbols" than any other language I know. And it uses simplified, mostly plain English syntax.

If you're looking for a serious language in which it'd be easy to read and write, but still be prouctive, go for Python.

Or visual basic, which is becoming more and more bloated over the years, and it has syntax incompatibility issues with earlier versions - so I can't recommend VB.

link|flag
vote up 0 vote down

Not sure about "least" amount of syntax, but if you mean succinct/lightweight, then undoubtedly the K language has to be a strong competitor.

link|flag
vote up 1 vote down

It rather depends on your definition of syntax. For example, Subtext no textual syntax, but quite a lot of visual syntax.

link|flag
vote up 3 vote down

Programming languages that are implemented very close to some simple computational model are likely to have very little syntax.

link|flag
3  
Last time I checked, my Intel computer didn't have a tape inside. x86 is register based. – Pete Kirkham Jul 4 at 9:39
1  
IP register is the HEAD and memory is the TAPE. – Nick D Jul 4 at 9:48
The Turing machine has very few instructions with operate on the tape, which is a single stream of data and instructions with O(N) access. x86 is CISC device, and most read/writes operate on random access memory, not on the instruction stream. If anything it's based on Von-Neumann with separation of instruction and data - later variants have support to prevent you executing read/write memory. – Pete Kirkham Jul 4 at 11:31
vote up 2 vote down

A Hello World in Brainfuck

++++++++++[>+++++++>++++++++++>+++>+<<<<-]>++.>+.+++++++..+++.>++.<<+++++++++++++++.>.+++.------.--------.>+.>.
link|flag
2  
Sometimes I tell myself I'll learn brainfuck. Just for laughs, you know? Then I double take at how you do something simple like hello world, or multiplication. Then I go to a therapist for weeks 'cause you know. Brain fuck'd. – Carson Myers Jul 4 at 9:08
vote up 8 vote down

Does Brainfuck count.

Oh wait...you meant a useful language.

link|flag
hahah, i was just about to post that. – Sam Saffron Jul 4 at 8:45
3  
I think Ook! has less syntax. =) dangermouse.net/esoteric/ook.html – wai Jul 4 at 8:55
Both Ook! and Brainfuck have 8 productions, so have the same amount of syntax. Ook! uses multi-token productions, so arguably has more complicated syntax. – Pete Kirkham Jul 4 at 10:48
1  
Brainfuck is useful. How many rep point did we get just using it in an anwser ? – e-satis Jul 4 at 12:04
e-satis: ha ha hah ha – Aditya Sehgal Jul 4 at 12:30
show 2 more comments
vote up 8 vote down

LISP-derived, Forth-derived and Smalltalk-derived (IO?) languages probably have the least syntax, in that order.

And you can't measure it, because it's not technical, it's social.

link|flag
Forth has very little syntax, though variants build on it. Postscript (and by extension PDF) is a similar model to Forth, but with a lot more syntax. – Marcus Downing Jul 4 at 9:56
Well, syntax is what you accumulate over time. – alamar Jul 4 at 10:21
vote up 0 vote down

I find Applescript to be close to english and I feel there are less things you need to remember on a longer run.

link|flag
5  
But English has horrible syntax! :) – Marcus Downing Jul 4 at 9:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.