I'm thinking about desiging a language similar to qbasic in syntax but even simpler so that a new programmer can learn some programming without being discouraged by something like C,C++, or C#. For example, use

Write "Hello World"

instead of

PRINT "Hello World"

or

In "Enter your name" 
Read = name

instead of

INPUT "Enter you name" name$

I'm looking for more suggestions on my syntax. Anything would be greatly appreciated. Thanks!

link|improve this question

Look at Python. – Skilldrick Nov 4 '10 at 21:08
2  
Well, my suggestion would be name = Read(). I.e. Read is a function which reads a string and returns it, FunctionName() calls a function without arguments, and variableName = expression evaluates expression and assigns the result to the variable variableName. I know that's kind of boring, because that's how most languages do it, but I really think it's the least confusing way. – sepp2k Nov 4 '10 at 21:25
1  
I fail to see how Write is better than PRINT. Either needs a bit of explanation, and only a bit. name = Read is a possible approach (see SNOBOL), but I really don't see it as simpler than INPUT, or much simpler than cout << "Enter your name:\n"; cin >> name;. Most modern languages are well enough designed that writing simple programs is more of a programming than a language problem. It may be that there's a simpler solution that we've been missing for the past fifty or sixty years, but simply making qbasic maybe a touch more intuitive for you isn't it. – David Thornley Nov 4 '10 at 21:27
1  
Someone who can't get used to cin << "..." instead of PRINT "..." after a decent explanation has no business being a (beginning) programmer. No program will ever look like english (which is a good thing(tm) btw), and it will always take some knowledge of the language (e.g. knowing cout and how it abuses <<) to understand a nontrivial program. The main thing is being understood by halfway decent programmers, and those don't care whether it says PRINT or cout << or QWERTY::: as long is it can be easily identified. Needless to say, the last won't get loved. – delnan Nov 4 '10 at 21:40
2  
@RCProgramming: The issue with being negative is that there are things that cannot be done, or should not be done, or aren't nearly worth the effort. This is the exact sort of thing I tried when I had learned much of BASIC. It was pointless then, and unless you have some ideas I haven't seen it's pointless now. I really doubt that, with all the good will and help in the world, you'll come up with anything noticeably better than Python or Scheme - unless you come up with a great idea, and you won't get one by asking for one. – David Thornley Nov 4 '10 at 21:40
show 4 more comments
feedback

2 Answers

up vote 0 down vote accepted

(Disclaimer: This is a highly subjective matter. The following is my personal opinion)

Above all, the syntax needs to be consistent and simple - every single special case needs excessive justification. For example, I'd never make Read (which reads a single line from stdin, I assume) anything else than a normal function. Unless you allow calling functions without parens and flip the order of operands for assignment (which would be a mortal sin, since it totally contradicts every single other (imperative) programming language out there, with zero benefit!), Read = name is a special case. Special cases are evil. Because they are special, they need to be treated specially in the parser, need to be remembered as a special case by the programmer, etc - unless they add significant value, they are not worth this cost. And all this burdens beginners twice as heavily. Do you know why C++ has such a horrible reputation, especially as a beginner's language? I blame it on the fact that the language is huge, with thousands of special cases, many of which one will soon run into when experimenting (and they usually trigger arcane error messages a beginner will propably not understand - props to Clang for providing relatively clear diagnostics). The language is complex, so it takes much longer to learn. Consistent and simple syntax reduces complexity, or rather, the effort required to understand a given piece of code (so you have more energy left to understand the semantics - the part that's really much harder and a gazillion times more important).

For example, use Write "Hello World" instead of PRINT "Hello World"

That's barely a difference from a syntax perspective. A "novel" approach would be removing all these special cases and reducing e.g. I/O to function calls instead of keeping them around as seperate, somehow "special" statements. When you want to Write to a file, what will you do? Add more special syntax to that statement, or even create a new statement? The only sane way is to make it as a function, which can be altered and extended without hacking the compiler every time.

There are things that make sense to support at language level, like assignments or loops. And then there are things that only add complexity when elevated to language level.

Also, ask yourself what you want... a BASIC dialect with slightly different syntax? Sure, the implementation will be a rewarding learning experience. But apart from that, there's little innovative/outstanding you can add to it without throwing most of BASIC. Which would propably be a good thing for a modern, easy-to-use language (I'm talking about being usable by someone who can, to some degree, program - there is no language which turns nonprogrammers into programmers, because the language is just a tool; no matter what language, one must first solve the problem mentally before the program can be coded).

link|improve this answer
Thanks for your thorough answer. What would you do instead for your suggestions, which i appreciate? And yes i want a basic dialect with a slightly different syntax – RCProgramming Nov 4 '10 at 22:00
feedback

Assuming that you've looked into other pre-existing languages and found them wanting... OK, I'm sorry, but you're leaping into a seriously complicated subject by wanting to design your own language. Well defined (and supported) languages such as Logo, BBC BASIC (a personal favourite of mine) and (my 3 year old loves this) Scratch are all very simple to pick up.

Assuming you're going forward with this, then take a look at Domain Specific Languages and also consider purchasing the book of the same title (no affiliate link) by the renowned Martin Fowler et al.

Edited to include syntax examples:

BBC Basic RSS feed reader

INSTALL @lib$+"XMLLIB"

      url$ = "http://feeds.bbc.co.uk/weather/feeds/rss/5day/id/2688.xml"
      XMLfile$ = @tmp$+"temp.xml"
      PROCurldownload(url$, XMLfile$)

      PROC_initXML(xml{}, XMLfile$)
      rss% = FN_skipTo(xml{}, "rss", 0)
      IF rss% THEN
        channel% = FN_skipTo(xml{}, "channel", rss%)
        IF channel% THEN
          IF FN_skipTo(xml{}, "title", channel%) THEN
            PRINT FN_repEnt(FN_nextToken(xml{}))
          ENDIF
          WHILE FN_skipTo(xml{}, "item", channel%)
            item% = FN_getLevel(xml{})
            IF FN_skipTo(xml{}, "title", item%) THEN
              PRINT 'FN_repEnt(FN_nextToken(xml{}))
            ENDIF
          ENDWHILE
        ENDIF
      ENDIF
      PROC_exitXML(xml{})
      END

Logo:

FD 20    ; drawing a line and moving
PENUP    ; lifting the pen so it will not draw anything
FD 20    ; moving but not drawing
PENDOWN  ; lowering the pen so it draws again
FD 20    ; drawing a line and moving
PENUP    ; lifting the pen so it will not draw anything
FD 40    ; moving but not drawing
PENDOWN  ; lowering the pen so it draws again
RT 20    ; rotating right (clockwise) 20 degrees

Scratch:

You need to see the visual editor really

alt text

link|improve this answer
could you please give me example code from those 3 languages? Thanks – RCProgramming Nov 4 '10 at 21:43
@RCProgramming: Google is your friend, I think... :-) – Platinum Azure Nov 4 '10 at 21:50
@RCProgramming Edited as requested – Gary Rowe Nov 4 '10 at 21:57
Thanks. I take it logo is a graphics only language? What is the difference between BBC basic and others. What would hello world look like? – RCProgramming Nov 4 '10 at 22:01
1  
@RCProgramming You're at the point now where you need to conduct your own research. Follow the links I've supplied and spend a lot of time thinking through your language before you commit to writing a parser. – Gary Rowe Nov 4 '10 at 22:05
feedback

Your Answer

 
or
required, but never shown

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