EpicThings wrote:...I'm 10.
...I shouldn't know this stuff at my age!
EpicThings wrote:It'll take a while to finish and get working. I wonder if JavaScript works on it.
YoshiInAVoid wrote:C++ Is a low level language, thus easy to learn for just about anyone. Take a look at high level languages such as assembly which is what I have to deal with in SNES Game Maker and you'll realize that C++ is very easy in comparision.
Oh. VB.
VB != C++.
Completely different.

Option Explicit
Dim Count As Integer
Private Sub Form_Load()
Count = 0
Timer1.Interval = 1000 ' units of milliseconds
End Sub
Private Sub Timer1_Timer()
Count = Count + 1
lblCount.Caption = Count
End Sub
#include <iostream>
int main()
{
std::cout << "Hello, world!\n";
}
Users browsing this forum: No registered users and 2 guests