[fpc-pascal] Reasoning behind the inability to override a property

2016-06-05 Thread leledumbo
Just my curiosity about this particular "feature", why is property overriding not allowed (redeclaring with different visibility is however allowed)? e.g. consider the following code fragment: type TA = class private FP: Integer; public property P: Integer read FP; end; TB =

[fpc-pascal] Writing fpWeb app without Lazarus

2016-06-05 Thread Mr Bee
Hi all, I'm now learning how to use fpWeb. But for some reasons, I don't want to use Lazarus. Instead, I want to write the program using plain text editor or console text editor (like vim, nano, etc), in case I need to do it remotely. It's now just a simple Hello World program, so it must be