I figure we don't have very many users on this forum who post about programming. So I'm going to get you guys more involved. Here are the rules and how you play this game:
Basically you go back and forth adding a new piece of code to the previous persons source code. We may be able to develop something from this. We'll start off with basic C++ then I'll ask you guys if you want to shift to SDL, Allegro, etc. Any one of those. Now here are the rules:
If the previous persons source code contains an error or parse error, politely fix it and state what has been changed.
When you add a new change to the source code, please add at the bottom of the source code (out of the code box) what you added or changed. This helps us to know what to do next.
I'll start with a basic C++ program note how i use the code box:
1 - Created basic source code
Basically you go back and forth adding a new piece of code to the previous persons source code. We may be able to develop something from this. We'll start off with basic C++ then I'll ask you guys if you want to shift to SDL, Allegro, etc. Any one of those. Now here are the rules:
If the previous persons source code contains an error or parse error, politely fix it and state what has been changed.
When you add a new change to the source code, please add at the bottom of the source code (out of the code box) what you added or changed. This helps us to know what to do next.
I'll start with a basic C++ program note how i use the code box:
Code:
#include <iostream.h>
using namespace std;
int main()
{
cout << "You guys decide what to do next.\n";
return 0;
}