(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).
name = Read(). I.e.Readis a function which reads a string and returns it,FunctionName()calls a function without arguments, andvariableName = expressionevaluatesexpressionand assigns the result to the variablevariableName. 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:25Writeis better thanPRINT. Either needs a bit of explanation, and only a bit.name = Readis a possible approach (see SNOBOL), but I really don't see it as simpler thanINPUT, or much simpler thancout << "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:27cin << "..."instead ofPRINT "..."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. knowingcoutand 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 saysPRINTorcout <<orQWERTY:::as long is it can be easily identified. Needless to say, the last won't get loved. – delnan Nov 4 '10 at 21:40