Quote: "
I've neverheard about this pascal language... better look it up.
"
Pascal, these days more commonly referred to as Delphi, might be your bet. It looks a lot like Basic, but is very powerful. But it's not as easy as basic though. There's still a learning curve.
But it certainly beats C/C++ hands down. It's nearly as powerful, and it doesn't look like greek.
Here's a peek at what Delphi/Pascal code looks like:
procedure TForm1.UDPDataReceived(Sender: TComponent;
NumberBytes: Integer; FromIP: String; Port: Integer);
var
MyStream: TMemoryStream;
TmpStr: String;
begin
MyStream := TMemoryStream.Create;
try
UDPRec.ReadStream(MyStream);
SetLength(TmpStr,NumberBytes);
MyStream.Read(TmpStr[1],NumberBytes);
MemEdit.Lines.Add(FromIP+': '+TmpStr);
finally
MyStream.Free;
end;
end;
-----
They SAID that given enough time a million monkeys with typewriters could recreate the collected works of William Shakespeare... Internet sure proved them wrong.
-----