| Furball - Nov-07-2004 server time |
| Ya, I thought so. Java always used to anger me because of the case-sensitive syntax. One wrong letter and you're screwed. |
| wtd - Oct-12-2004 server time | ||
No, you can't. Java is a case-sensitive language. String, string, STRING, and sTrInG, are all different names as far as Java is concerned. Pascal and Ada95 are decently powerful languages that are case-insensitive, though, if that's your thing. |
| Furball - Oct-12-2004 server time |
| You can use all caps for java now? Well, it's about time. That's half decent now. Well, it helps if you have the most recent version of it (I was probably using a really old one). |
| wtd - Oct-11-2004 server time | ||||||
Java has a very simple naming scheme, and a relatively decent one.
The use of capital letters makes it clear where one word ends and another begins, making longer names readable.
Or:
Can you read those as quickly as you could the first version that Java uses? Class names begin with a capital letter to indicate that they are the names of classes. They should stand out when you read the code, and this way they do. Constants, being allcaps, also stand out quite nicely, since they too are different and should stand out. |
| Furball - Oct-10-2004 server time |
| Ya, turing's syntax is very simple. Most of the syntax is ONE word, followed by a function. Really quite easy to use, but it's good for teaching concepts such as loops and junk. The object orinted one was actually not that bad. The dos one sucked because of all the bugs and compilor issues, but the Object Oriented one is actually decent. It's quite different than actual programmin languages such as C++ and Java though. Kind of makes your eyes glaze over when you see Java syntax after programming in Turing for a good 2 years. Kind of makes you wanna go WTF many times. I still don't understand why Java has to capitalize the first letters of a line of code. Why not keep it all lower or higher case letters? The programmers must have been whacked up on goofballs when they were creating it. |
| wtd - Sep-26-2004 server time |
| It used to stand for "Personal HomePages". Now it's mostly just tradition. Turing descends from Pascal, which was created by Nicholas Wirth for the purpose of teaching. However, it's become a rather successful commercial language through the years, currently living on primarily in Borland's Delphi programming environment. Turing simplifies a lot of Pascal's syntax, but to me the greatest flaw would be that there appears to be no driving design goals with the language, with the syntax catering to special cases rather than improvments being generalized so that they can be applied widely. |
| FaZoNiCa - May-09-2004 server time |
| lol. Cool, I never knew that!! |
| Red Squirrel - May-06-2004 server time |
| Somehow, I think it stands for hyper text preprocessor. PHP just stands better then HPP I guess. |
| FaZoNiCa - May-06-2004 server time |
| Yup!! That makes sense. What does php stand for anyway? That is, if it stands for something? |
| Red Squirrel - May-06-2004 server time |
| Yeah it`s probably mostly for teaching. I find it`s better to start with something harder like C++ though, that way you can make it do more stuff, and then if you learn something easier such as php it`s a brease. This is where years of experience don`t really matter since I have about 1-2 years of experience in C++ while I have about a year in php, and I`m 10 times better with php. You can`t really compare both since C++ is for appz while php is for web stuff, but learning the syntax and functions of c++ helped me get past the php basics and move on faster. |
| FaZoNiCa - May-05-2004 server time |
| Yup. Apparently it's like, really simplified to teach students programming? Or that's what my teacher said.. |
| jamslam - May-05-2004 server time |
| I haven't heard of it ever, in my life, until now. It appears to be a dumbed down programming language that is used to teach the basics of OOP to students with no programming background. It doesn't look like it does anything, though. Link: http://www.holtsoft.com/turing/intro.html |
| FaZoNiCa - May-04-2004 server time |
| OOokay...I posted that BEFORE I found out that not many people on this forum know Turing, so you don't have to repeat that. |
| FaZoNiCa - May-04-2004 server time |
| Hey everyone!! I need some help with Turing. I hope someone can help!! For homework from my Grade 10 Computer Programming class, we have to write a few programs, using Turing, of course! I've done all but one, which I just can't figure out how to do. So if someone could maybe just give me a vague idea of how I can get it to work, that would be greatly appreciated!! The question is: "Create a program which will draw a line of "o"'s on a cartesian plane The centre of the screen should be the point (0,0). Allow the user to enter the values for m and b and the beginning and end points for x. Note, all values must be between -10 and +10." If it helps, we just started Loops last week. All I've been able to do is get the user input, but when it comes to drawing the line, and figuring out how to place the points and all, I'm just lost. If it would help, I could post the codes I've written up so far... Can anyone help me? Thanks!! |