OK. I will start to studie. But I see that the in the ages of programming for the Mac absolute top programmers where needed. You could not do it like we are now used with simple solutions like PHP, etc. I hope that I can do something....
Remains that I would be helped with an abosolute simple example how to make a kind "hello Word' program in Think Pascal but WITH MENU. Like a real program. Not only an executable.
I have this code of a simple program WriteName:
program WriteName;
var
i: Integer; {variable to be used for looping}
Name: string; {declares the variable Name as a string}
begin
Write('Please tell me your name: ');
ReadLn(Name); {ReadLn returns the string entered by the user}
for i := 1 to 3 do
begin
WriteLn('Hello ', Name)
end
end.
How to get this in a real program?? So with something like an About WriteName. Under File Start, Stop, Print, Quit.
If I have these basics I could use this for my web server program.
I'm also in for the most simple book or PDF or web site to learn this by myself.
Remains that I would be helped with an abosolute simple example how to make a kind "hello Word' program in Think Pascal but WITH MENU. Like a real program. Not only an executable.
I have this code of a simple program WriteName:
program WriteName;
var
i: Integer; {variable to be used for looping}
Name: string; {declares the variable Name as a string}
begin
Write('Please tell me your name: ');
ReadLn(Name); {ReadLn returns the string entered by the user}
for i := 1 to 3 do
begin
WriteLn('Hello ', Name)
end
end.
How to get this in a real program?? So with something like an About WriteName. Under File Start, Stop, Print, Quit.
If I have these basics I could use this for my web server program.
I'm also in for the most simple book or PDF or web site to learn this by myself.