I am totally new to programming and I want to learn a simple language that I can create desktop application with.

I was originally going to attempt learning Delphi but after playing with it for a while it just seemed quite overwhelming.

I don't plan to become a full time programmer or try to get any jobs right now, I just want to build apps for myself mainly.

I stumbled upon RealStudio the other day and from the looks of it is pretty easy to learn and can get the job done for the types of projects that I want to create. There's also some good documentation on it from what I have gathered. The fact that it is a cross-platform dev toll is pretty neat as well.

My only concern is that I may want to go further with things at some point and I don't want to be limited by the fact that I chose to use and underdeveloped or outdated programming language. If the knowledge I gain from using it is applicable to other languages down the line (should I ever decide to become a serious programmer) then I am all for it.

I am also curious as to just how much easier it is to learn when compared to other languages (most importantly Delphi) ? If it is not that big of a difference I guess I shouldn't even waste my time? Hopefully someone who uses or has used it before can shed some light on the subject for me.

Thanks in advance for any input.

link|improve this question

3  
I'd definitely choose Delphi. Writing simple applications in Delphi is really simple -- you don't need to use any advanced stuff unless you wish to do so. But Delphi lets you grow -- there is no limit anywhere. – Andreas Rejbrand Mar 27 '11 at 13:44
1  
Delphi is pretty simple to start with – x2. Mar 27 '11 at 13:46
1  
@Gary The comments above all come from Delphi diehards, just so that you can set them in context. This is a pretty subjective question so expect some strong opinions. – David Heffernan Mar 27 '11 at 13:51
2  
Don't be afraid to start with the "wrong" language. It's not like you'll be stuck with it for the rest of your days - in fact, it's better to learn many languages. Learning a second, third, fourth language is much easier than the first, but - unless you choose one which is nearly identical to what you already know and hence doesn't teach you new ways of thinking - is really enlightening. – delnan Mar 27 '11 at 13:53
1  
I think of the company advertizing "Thought Processors" or the college pretending that learning BASIC suffices or at least helps, whereas the teaching of BASIC should be rated as a criminal offence: it mutilates the mind beyond recovery. - E.W. Dijkstra. – Free Consulting Mar 27 '11 at 22:22
show 10 more comments
feedback

11 Answers

up vote 5 down vote accepted

In order to begin writing programs, please note that you'll have to learn note only a "language", but several aspects:

  1. How a computer works - not the Turing theory of course, but what CPU, memory, operations, and so on, are...
  2. Learn a program to write programs, that is, an IDE.
  3. Discover a language, i.e. a syntax.
  4. Find more about OOP: what is an object, how to build them...
  5. Find your way within a framework: a real application needs to use such a hierarchy of classes/objects in order to make its UI, DB access, memory usage. You can have several frameworks with the same language (think about Java).
  6. Discover what algorithms are: the best way of making the Descartes principal work (split big problems in smaller problems, which a computer can work with, and how to solve each one of them).

Some script languages are told to help beginners. Python for example, has a simple and readable syntax, and some high-level constructions (lists, dictionaries, tuples) which may help you use algorithms without even being able to know their name.

Then study from other's work. A good way of learning is taking a well written program, read its source code, then try to re-implement it step by step. Reinventing the wheel is not bad. And if the source code is in another language, you'll learn.

So a good book is mandatory. First steps should be safe, to avoid wrong habits. I'm not sure a garbage collector is a good habit (but this is IMHO here - just trolling).

Don't look at fancy IDE. RAD is good to produce a prototype. But it's also an open door to wrong programming: mixing logic and User Interface, don't understand what is done behind the scene, etc...

Delphi is a good choice. But try writing code, not just playing with the IDE and components. Delphi has a clear syntax, some high-level structures (the new generics could help you coding faster), a lot of source code available on the net, and a very active community. In comparison to Real Basic, I'd tend to go to the Delphi direction.

link|improve this answer
These are all good points. +1 for "a good book". I recommend the Delphi books by Cantu or Texeira. – Warren P Mar 29 '11 at 12:53
Yes, Cantu and Texeira are good authors. And for one step further into algorithm, I'd highly recommend Tomes of Delphi – Arnaud Bouchez Mar 31 '11 at 14:51
feedback

I'm not so sure that Delphi is really harder to get to grips with than RealBasic. You could think of Delphi as Visual Basic done right. Perhaps the same could be said of RealBasic!

RealBasic is certainly a pretty marginal language compared to, say C++, Java, C#, VB.net, even Delphi. However, it is my understanding that RealBasic is of very high quality.

Having said that, for the type of programming you are talking about (personal projects) I'm not sure any of that really matters. Choosing RealBasic now doesn't prevent you from switching to something else at some point in the future.

So I would advise you to choose whatever feels most comfortable.

link|improve this answer
Thanks David. I guess the main thing for me is the way the IDE works, with RealBasic it just seems pretty straight forward. I am also intrigued by the fact that it is cross platform, it also seems to have some form of automatic memory management which is nice as well. I think I will give it a try, just wondering if it would ruin things for me syntax wise if I decided to try another language later. – Gary Becks Mar 27 '11 at 13:56
@Gary I wouldn't worry about that. Automatic memory management (aka garbage collection) really helps when learning. Programming is programming, no matter the language. Once you learn the skills, you can transfer them to any language. Joel Spolsky wrote an interesting article about RealBasic back in 2000, obviously it has come along way since then. Spolsky was instrumental in the development of VBA way back when. He's also one the people behind Stack Overflow. – David Heffernan Mar 27 '11 at 14:09
Very informative article. Thanks. – Gary Becks Mar 27 '11 at 14:26
Having used a number of different languages over the years, I don't think using RealBasic will hinder you later on. I'm not a Java programmer but I've found that I can read easily read Java because it and RB are close enough in most areas to make conversion fairly easy. I've ported a few Java classes to RB with no real issues. – BKeeney Software Mar 30 '11 at 0:39
feedback

RealBasic is a great object oriented language to get started with. It really is designed for beginners in mind and doesn't let you 'hang yourself' as many other languages do. The IDE is designed to make it easy to use. It's a good Rapid Application Development (RAD) environment.

Beyond the ease of getting started, it's primary appeal is that one set of code works on Mac, Windows, and Linux and with to a lesser extent their new Web Edition that creates web apps. I know of no other language that can say that to the same degree that RealBasic can. Each platform compiles down to a native executable too and does NOT rely on runtime engine.

You can use platform specific API's in RealBasic code and if that's still not sufficient you can extend RB by creating external libraries that are created in C/C++ and again, are native to each platform.

The community is very passionate about the platform and their forums http://forums.realsoftware.com/ are filled with good Q & A. There are some nice resources for the community including the Association of REALbasic Professionals at http://www.bkeeney.com.

If video training is your thing, there's a 8 hour course through VTC www.vtc.com/products/Real-Studio-Tutorials.htm and I have over 30 hours of video training on my own website at http://www.bkeeney.com.

I've been an RB consultant for 10 years and I'm one of the founders of ARBP. So, yes, I'm a little biased. ;)

link|improve this answer
I thought RB DID rely on a runtime engine, they just link it in as a DLL into the resource section, at the link stage. – Warren P Mar 28 '11 at 23:39
I upvoted you, by the way, even though I'm a delphi fanatic. Because at least your answer doesn't rely on a false correlation between StackOverflow traffic levels and "how good or easy to learn language X is". – Warren P Mar 28 '11 at 23:45
Well, I guess you could say it has a runtime library. But the end user never knowns it and doesn't have to install anything else as it's a self-contained system. – BKeeney Software Mar 30 '11 at 0:31
Thanks for the up vote. In the long run people have to decide upon the language that fits their needs. I've seen plenty of bad RealBasic programs, but I've seen just as many bad Cocoa programs. The difference is that it's a little easier to get started in RB so it's 'less effort' to get started. If you have are a hobbyist, or someone not well versed in C/C++, AND have a strong desire for Mac/Windows/Linux apps, then RB is a good choice, in my opinion. The community is very active and it's been around a lot longer than StackOverflow. – BKeeney Software Mar 30 '11 at 0:36
You are right. RAD is really a requirement in modern generation. Where many owners investors, want fast/rapid software with nice GUI. They dont give us time to build one GUI for 1 month. Where i found RB is a nice to start. Also do not forget its not RB only out there, there is also PureBasic. BTW, does RB has any mobile platforms such as LiveCode ? – YumYumYum Jun 12 '11 at 13:09
feedback

I am thoroughly unimpressed with RealBasic, and the language seems critically limiting to me, and its compiler technology really quite inferior to "real compilers", but then, that's not a finding of fact, that's a completely subjective opinion. I have also been a Delphi guy since forever, and I can't exactly be unbiased about it. My guess is that if Real Basic fits your brain better, you should start there, and learn more about it. I tried to move from Delphi to Real Basic to do Mac apps, and found it too limiting for my purposes.

However, I can provide two useful facts for you to consider:

  1. Delphi is probably a mile ahead at writing apps for Windows. Or more. Delphi apps can be as small as you might want, and have no runtime, or "dlls baked in as resources" which is how realbasic makes standalone apps.

  2. Right now, Real Basic has better cross platform support, than Delphi. But Delphi is actively moving in that direction.

I can also provide another two useful facts:

  1. Both have free trials so you can figure this out by yourself, better than have someone else figure out what works for you.

  2. More specific questions about RealBasic and Delphi's capabilities and features, that are not as simple, and subjective as "which is Better" are more on topic for StackOverflow.

link|improve this answer
As a Real Studio developer, I wouldn't say the language is "critically limiting", but I agree with your other thoughts. FYI: the Real Studio compiler is in the process of being replaced with LLVM, a very modern compiler framework. – Paul Lefebvre Mar 29 '11 at 15:03
That's fabulous news. I will definitely have a look at the LLVM flavor when its released. – Warren P Jul 22 '11 at 3:28
feedback

I am a delphi hobbyist. And I can tell that for beginner the most important thing is community support. Articles, examples, videos, forums - all those things which let you learn from others experience. Now look at number of delphi tags and then at number of REALbasic tags. No need to explain with which language you wont be left with your problems alone.

link|improve this answer
Very good point. – Gary Becks Mar 28 '11 at 12:58
2  
As an RB user for over 10 years the last place I would go would be StackOverflow. Not because it's not a good resource but because there are 10 years of searchable resources elsewhere. The community is smaller, admittedly, but it's a passionate group. When people ask me where to go to find RB info I always point to the NUG mailing list and to the Real Software Forums. – BKeeney Software Mar 28 '11 at 14:03
I'm a delphi fan, but I wouldn't have picked delphi JUST because of StackOveflow activity levels. By that same measure, you should ditch Delphi, and use C# or Java. (So, I'm thinking, that Delphi fans should definitely NOT be using the argument that the number of people on StackOverflow correlates to how easy something is to learn.) – Warren P Mar 28 '11 at 23:40
1  
Gary - Python and Java are free. try them too. I love Delphi and I use it all day. But your brain is your biggest asset. Learn lots of languages. Personally, I love doing Java in NetBeans (I'm not a fan of Eclipse) and I love Python too, and I even love Smalltalk (Pharos or Squeak). Learn LOTS of languages. expand your brain. – Warren P Mar 28 '11 at 23:42
@ Warren, I understand what you are saying, however - I would like to learn and master one language before moving on to the next one. I have yet to even learn one ad I am just trying to figure out which would be the best/easiest to get started with and the most worthwhile. Right now I am leaning towards Delphi. – Gary Becks Mar 29 '11 at 10:23
show 1 more comment
feedback

From a learning standpoint, I think you will find that RealBasic (Real Studio), Object-Pascal (Delphi), Visual Basic, C# (Visual Studio) and Java (Eclipse) are all pretty similar in language design and capabilities.

If you have never programmed before, you have other things to focus on before choosing a language, including simple concepts like data structure, program flow, program structure and object-oriented design. It won't matter what language you choose to learn these concepts.

Personally, I think languages that are more verbose, such as RealBasic, Visual Basic and Object-Pascal are better for learning. The extensive use of symbols and semicolons in C# and Java are hard for beginners. And don't get me started on Objective-C!

From an IDE standpoint, Real Studio is probably simpler to learn than the others.

I've used VB, C#, Java and RealBasic. Currently, I primarily use Real Studio in my consulting business. A huge benefit for me is that I don't have to use Windows with Real Studio. It works fabulously on Mac OS X and still allows me to create Windows software when I need to.

link|improve this answer
feedback

Most languages tend to share certain conceptual similarities. This is especially true of languages within the same paradigm. So it doesn't really make too much difference which language you start with; once you understand the underlying concepts of a particular paradaigm, new languages within that paradigm are much eaier to learn.

Kind of like an English person learning American. :D Okay maybe not that easy, but certainly much easier than learning new natural languages.

If you do at a later stage decide that you want to take programming more seriously, then you would in any case be well advised to learn multiple languages.

If however, you stick to programming for yourself, then it may be better to use the following objectives:

  • How easy is the language to understand. Learning to program for the first time can be quite daunting, and if your first language is too complicated, you may be scared-off. Delphi and all Basic variants have strong foundations in the Imperative Programming Paradigm (think writing a detailed set of instructions for someone else to do). Both Delphi and RealBasic use fairly logically named syntax and constructs, making them both good choices.
  • How easily can you shoot yourself in the foot. Delphi certainly beats most languages hands down when it comes to writing generally 'safe' code. By this I mean code that isn't going to fall apart for seemingly inexplicable reasons. However, Delphi does require you to have some understanding of the underlying memory model (managing memory resources). So on this basis, RealBasic probably deserves a slight nod. However, my personal opinion is that even with languages using Garbage Collectors and greatly simplified memory management, all programmers do in the end still need a firm understanding of the principles.
  • How well is the language supported. How easily will you get support from the languages suppliers? How strong is the language's community? In the end you can expect to bump your head a few times, and the important question is how easily you'll be able to get help. I suspect Delphi would beat RealBasic here.

By the way, you mentioned your interest in cross-platform support from RealBasic. I suggest you ignore that. For your purposes it's more of a novelty with no real benefit. In fact it risks making your life difficult due to subtle differences between different platforms. Even if the platform is supposed to be a Virtual Machine that behaves identically in different OS's, you could for example find differences due to an implementation bug in one particular OS's VM.

link|improve this answer
Thanks for your input Craig. Gives me a lot more to think about. – Gary Becks Mar 27 '11 at 23:28
For the most part differences between platforms is purely cosmetic, as far as REALbasic goes. For example, you might have to write code to make your "textfields" a bit smaller on OSX. That sort of thing. Line-endings are different, obviously. The main issue really is if you are writing an app that lends itself to crossplatformness. Or an app that heavily relies on the OS's APIs which are unique to itself, and don't exist in RB. For example if you want to make an app using Apple's CoreAudio, then RB is not for you. – boytheo May 30 '11 at 20:03
feedback

If I was in your shoes, I'd hope someone would recommend Java to me even though I'm no big fan. Here's why: the BASIC language in all forms and IDEs are on the way out, and so is Delphi/Pascal. Java is almost C++, however garbage collected; and both those languages are going to be around for some time. Java also has:

  • easy installation,
  • lots of tutorials and documentation,
  • standard APIs for graphics programming,
  • portability with a gazillion platforms (including cell phones),
  • a handful good IDEs to choose from, and
  • backtraces when crashed (which Delphi does not).
link|improve this answer
Delphi can do stack traces, using MadExcept, or JCLDebug. Easy. In fact, with madExcept, it's miles ahead of java. – Warren P Mar 28 '11 at 17:30
+1 for easy installation. With Apache Maven (which is supported by all major Java IDEs) I really enjoy that there is no need to configure library binary, source and documentation 'search paths' (class paths) manually – mjn Mar 28 '11 at 18:01
What do you mean when you say that Basic/Delphi languages are "on the way out"? Assuming you are referring to them being popular or being able to find jobs using these languages, this is not really a factor for me as I never plan to attempt to do any programming for anyone but myself. I may of course choose to sell some of the apps I create at some point, but that's all. I simply want a language that it straight forward and easy to learn, and that will not hold me back in the future should I choose to build some more advanced apps with it. – Gary Becks Mar 28 '11 at 18:58
With how technically out of touch Jonas' answer is, what makes you think his predictions of the future are any more fact-based? :-) – Warren P Mar 28 '11 at 23:38
@Gary Becks: I mean that both BASIC and Pascal/Delphi vs. Java gets relatively fewer (relevant) hits when you google and you'll find relatively fewer tutorials/samples/QAs about them. They are not backed by giants, but Java is. Delphi used to be Borland Delphi, then Inprise Delphi, then CodeGear Delphi, currently Embarcadero Delphi, and possibly in the future no Delphi. Loosing your IDE may "hold you back" somewhat. I started using BASIC myself 20 year ago, which was fine, but haven't had any use for it the last 15 years; I just consider this advice for myself if you were me! :) – Jonas Byström Mar 29 '11 at 8:01
show 7 more comments
feedback

REALbasic is a good language to learn. As for whether it's better than Delphi, I have no idea.

If you want to write fast code, you can forget REALbasic. It's not that it's slow, because it's not. It's just not fast ;) You won't be writing low-level functions using pointers to manipulate bytes or Uint32's and stuff like that. REALbasic just isn't good at that stuff. For example in C++ you can do "bitops" like this: X = a << 1;

In REALbasic it is this X = bitwise.ShiftLeft( a, 1 ). The function has 3 parameters bitwise.ShiftLeft( value as uint64, shift as uint64, numbits as uint64=64 ) as Uint64. So if you are working with other types, there is overhead associated with type conversion. And overhead with calling a real function instead of the compiler just generating the correct instructions.

Working on low level code in RB is awkward to do, and slow. Pointers were kind of "Tacked on" to the language, over 10 years after REALbasic was created, instead of the most basic fundamental part of the language. And it shows. There isn't a "pointer of a certain type" in REALbasic like in C, just a generic pointer.

Many inbuilt REALbasic functions themselves are not well optimised. But no commonly used functions are terrible. For example I've written Unicode conversion code that can run 2-3x faster than REALbasic's conversion routines.

On the other hand, REALbasic has a large library of functions and classes to do most commonly needed tasks. And if the main time spent in your program, is calling functions that are part of REALbasic itself, then your program can be quite fast.

REALbasic also has an excellent language model. So you won't be restricted into only implementing bad design. The main thing that decides your program's speed is the design. If you need pointers or function callbacks, you can use them. Method overriding is there. You can build your own classes, and all that nice stuff. It's got weak-references, operator_overloading and many other language niceties. It's memory-management is easier-to-use and more reliable than any other language I've seen!

The worst thing about REALbasic?

Personally I've found the REALbasic community to be very unhelpful if you are trying to write fast software. If you ask a question on how to do something, and then come up with a better answer than the ones they gave and so don't use their answers, and tell them this... they will often start criticising you with personal attacks, instead of sticking to the technical details of whether one approach is better than the other. Even worse, they will ignore the technical discussion and ignore your speed tests proving your code is faster, and reply only with personal attacks in an attempt to bait you into an argument about personal stuff.

Stick up for yourself and they'll only make it worse for you.

It's a nice community if you are happy to accept advice that leads to not-super-optimised and fast code. Otherwise it can be hell. The community is not going to change either, because their mentality is enforced by REALbasic's community moderators.

Personally, I'm not going back there. I can't recommend REALbasic to anyone who wants to write fast software.

link|improve this answer
feedback

Everyone, of course, is entitled to their own opinion and boytheo may have had a bad experience in the REALbasic (RB) community. But as a 15 year Visual Basic programmer moving over to the RB world 18 months ago, I can say nothing but good things about the community – and I have reached out to them numerous times. In fact, one of the best known consultants in the RB community spent on hour on the phone with me, free of charge, just to discuss the issues he thought I might run into converting my product line to RB. And I have found others in the RB world to be just as friendly / helpful. A few points about some of the stuff I read above:

Speed. Yes, if you are looking for all out speed and performance at the cost of everything else, then REALbasic is not be the best choice. I am NOT saying it is slow, I’ve seen much slower code out of other languages. The performance of the apps that I’ve created have not disappointed me either, and with some tweaking I’ve got the critical routines working with plenty of speed. But really, outside of games and sheer number-crunching apps, most applications don’t require blinding speed in most parts of the program. It’s just a factor to consider based on the type of apps you are building. If you are just starting out, then all out speed is likely not going to be a critical issue for you.

Complexity: I tried Delphi too, and I found it be, well, as you said, a bit overwhelming. No doubt it is a major player on Windows, and it is a great Development environment, but as a newbie, I would not be taking my cues from long-term Delphi programmers that are way passed the initial learning curve. REALbasic will be much more accessible to users that don't have much programming experience. Just quicker to get installed, up and running, and producing your initial apps. And there is plenty of power and functionality to take you forward.

Experience: If you like REALbasic and can produce the apps you need, you will no doubt learn to enjoy working on it and tend to stick with it. But that will in no way prevent you from learning other languages or moving on to something else if needed. 15 years on Visual Basic and I have been able to move to RB, fairly easily.

Crossplatform Compatibility: Until all the other vendors stop flapping their gums about what they plan to do in terms of supporting the Mac and Linux and actually produce soemthing, REALbasic is the way to go. I cannot tell you the sheer delight of taking my first fairly decent sized application (with a back-end database, 3rd party UI controls, and some fairly complex RB source code) over to the Mac and the darn thing started up and ran the first time! Sure some things needed to be tweaked to get it looking and acting completely Mac-like, but it ran on the Mac right off the bat and that opens up the Mac market to me with very little cost. As Windows market share slowly gives way to the Mac and mobile devices, this is no small factor as it used to be. It is something to consider, if you want to run natively on the Mac.

Tom

link|improve this answer
feedback

I'm developing now and then some Realstudio / Realbasic applications, and while I don't dislike it for sure I can tell you that it's not my favourite language.

If you want to start learning a good language that could allow you to write multiplatform apps, IMHO a very good one could be Python... I'm not an expert of this language but I tried some tutorials, made some simple applications on my own, and I found it very easy to start with. Just my two cent.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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