Coding Languages

Venom

Seasoned Veteran
Joined
Sep 12, 2012
Messages
3,798
Reaction score
0
FP$
0
Does anyone know python, i learned a bit to make a text based game but didn't go further, i think ill start learning again.

Now i want to learn c++ though 😛
 
Re: Phython Coding?

I know Python. 🙂 I'd suggest learning either Python or C++ though, don't try to do both at the same time as you will become confused (or at least I do 😛 ). If you can remember the fundamentals of Python, you should find C++ reasonably easy, however.
 
Re: Phython Coding?

AndroidOS said:
I know Python. 🙂 I'd suggest learning either Python or C++ though, don't try to do both at the same time as you will become confused (or at least I do 😛 ). If you can remember the fundamentals of Python, you should find C++ reasonably easy, however.

Coded this, a minuet ago:

Code:
/* my second program in C++
with more comments */

#include <iostream>
using namespace std;

int main ()
{
 cout << "Hello World!"; // prints hello world
 cout << "I'm a C++ program"; // prints I'm a C++ program
 return 0;
 }

Just waiting for visual studio 2012 to dl, so i can compile.<br /><br />-- 21 Nov 2012, 16:36 --<br /><br />Just renamed the thread so we can talk about differant languages
 
I'm having to learn Python next year, dreading it. I would've wanted to use a more productive language, but ohh well.
 
ZINC said:
I'm having to learn Python next year, dreading it. I would've wanted to use a more productive language, but ohh well.

Python is a great language if you download some 3rd party modules for it. 😉
 
The only language I can code in Is LUA. I really need to make some time to learn Something else.
 
I learned Java as part of a college course and have recently started teaching myself PHP. My plan is to focus on PHP for the moment and see what I can do with it.
 
Cool fergal 🙂

I got a friend and were making a c++ Game.
 
What are you using to render the graphics?
  • OpenGL?
  • Allegro?
  • GDI+?

Also, What kind of game is this? I assume the graphics will be 2d, Also will it be "Online" or single player?
 
Well atm it's in the console (we want to get it out asap)

Will be single player,

And we'll probably use opengl for graphics.
 
Sounds fun, Let me know how it goes i'll be happy to try it out for you 🙂
 
Thanks, will let you know more soon.

Oh and its a hacking game xd.
 
well, you pretend to hack into different networks,servers,and computers. although we do NOT support nor encourage real hacking.
 
I don't know python but i started with Java which is a great language for beginner programmers, i also know C/C++ and I am trying to pick up on C#
 
Hey im learning c++ any tips that would make it easier?.
 
I'm learning c++ right now too, I've just been reading books, watching tutorials, and practicing 😛
 
How long do you spend on it per day Eternal?

I've been spending about an hour to an hour a half per day learning PHP. I'd like to spend more time on it, but just too busy at the moment.
 
Spent 9 months learning PHP last year, consider myself more-or-less proficient now.

Not a fan of Python. The syntax gives me headaches.
 
Back
Top Bottom