Posted: Thu Jul 30, 2009 10:00 pm Post subject: RE:I prefer to program in...
Im, going to have to go with java again, for the same reason, a vast and endless library to use.
Sponsor Sponsor
btiffin
Posted: Sat Aug 01, 2009 12:38 pm Post subject: Re: I prefer to program in...
REBOL, Forth, COBOL, C, DCL and t'others
Cheers
Shah-Cuber
Posted: Sat Aug 01, 2009 12:55 pm Post subject: Re: I prefer to program in...
For most of my programming days I have programmed in Python, and it is an absolutely great language (Done most of the Project Euler problems with it)
However, recently, I have grown fond of Java, it is very useful and great for animation ... and its huge libraries =P
I also program in C/C++ and Mathematica ...
I guess my hierarchy of programming languages would be:
Java -> Python -> C/C++ -> Mathematica
Joel92
Posted: Fri Sep 04, 2009 5:40 pm Post subject: Re: I prefer to program in...
Lately Objective-C as it's my first object oriented program... other than that Perl. However, I'm finding it hard to be going back to a procedural-programming language.
A.J
Posted: Fri Sep 04, 2009 9:29 pm Post subject: RE:I prefer to program in...
C++ -> Python -> Haskell
wtd
Posted: Fri Sep 04, 2009 10:06 pm Post subject: Re: I prefer to program in...
Joel92 @ Sat Sep 05, 2009 6:40 am wrote:
Lately Objective-C as it's my first object oriented program... other than that Perl. However, I'm finding it hard to be going back to a procedural-programming language.
Well then, good news! Perl is an object-oriented programming language.
Joel92
Posted: Fri Sep 04, 2009 10:27 pm Post subject: Re: I prefer to program in...
wtd @ Fri Sep 04, 2009 10:06 pm wrote:
Joel92 @ Sat Sep 05, 2009 6:40 am wrote:
Lately Objective-C as it's my first object oriented program... other than that Perl. However, I'm finding it hard to be going back to a procedural-programming language.
Well then, good news! Perl is an object-oriented programming language.
whaaaaaaa ? i thought it was only procedural? well... that was the way I taught.
wtd
Posted: Sat Sep 05, 2009 12:45 am Post subject: RE:I prefer to program in...
code:
prompt$ perl
package Foo;
sub new {
my $class = shift;
my $bar = shift;
my $self = { bar => $bar };
return bless $self, $class;
}
sub baz {
my $self = shift;
return $self->{bar} * 2;
}
package main;
my $a = new Foo(42);
print $a->baz;
print "\n";
84
prompt$
Sponsor Sponsor
saltpro15
Posted: Sun Sep 06, 2009 8:13 pm Post subject: RE:I prefer to program in...