[fpc-pascal] test - ignore

2016-05-05 Thread Jerry
test - ignore ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] hello world

2016-05-05 Thread Tomas Hajny
On Thu, May 5, 2016 15:34, Mark Morgan Lloyd wrote: > Tomas Hajny wrote: >> On Thu, May 5, 2016 11:38, M Pulis wrote: > >>> why won't this compile? It is the only open file and is saved, looks >>> like a main program to me. > >>> No main program found in open files. Can not build. >> >> I assume th

Re: [fpc-pascal] hello world

2016-05-05 Thread Mark Morgan Lloyd
Tomas Hajny wrote: On Thu, May 5, 2016 11:38, M Pulis wrote: why won't this compile? It is the only open file and is saved, looks like a main program to me. No main program found in open files. Can not build. I assume that this is a message reported by some IDE tool. Which one (what's the

Re: [fpc-pascal] hello world

2016-05-05 Thread Tomas Hajny
On Thu, May 5, 2016 11:38, M Pulis wrote: Hello, > Folks: > > Apologies for the beginner nature of this query... > > why won't this compile? It is the only open file and is saved, looks > like a main program to me. . . > getting: > > No main program found in open files. Can not build. I assum

Re: [fpc-pascal] hello world

2016-05-05 Thread Graeme Geldenhuys
On 2016-05-05 10:38, M Pulis wrote: > No main program found in open files. Can not build. Same as what Mark said. Give more information and paste exact compilation or runtime error. Under FreeBSD with FPC 3.0.0 === [tmp]$ fpc hello.pas Hint: End of rea

[fpc-pascal] FPC Text IDE and Alt+F3 shortcut not working

2016-05-05 Thread Graeme Geldenhuys
Hi, Under FreeBSD & Linux using Mate Terminal (and xterm)... If I press the Alt+F3 shortcut which should close the current active window, it opens the Options Menu instead. Yet other shortcuts with F-keys, like F3 (open), Alt+F9 (compile) or F2 (save) works just fine. Is this a known issue? Is th

Re: [fpc-pascal] hello world

2016-05-05 Thread Mark Morgan Lloyd
M Pulis wrote: Folks: Apologies for the beginner nature of this query... why won't this compile? It is the only open file and is saved, looks like a main program to me. program Hello; begin writeln ('Hello, world.'); readln end. getting: No main program found in open files. Can not b

Re: [fpc-pascal] getopts unit vs CustApp parameter handling

2016-05-05 Thread Graeme Geldenhuys
On 2016-05-04 10:24, Michael Van Canneyt wrote: > It would be, but you had better update your interface, various things > have been added. I’ve updated the Interface last night to match that of FPC Trunk. https://github.com/graemeg/fpGUI/blob/develop/src/corelib/fpg_cmdlineparams.pas I was abou

[fpc-pascal] hello world

2016-05-05 Thread M Pulis
Folks: Apologies for the beginner nature of this query... why won't this compile? It is the only open file and is saved, looks like a main program to me. program Hello; begin writeln ('Hello, world.'); readln end. getting: No main program found in open files. Can not build. thanks!