Giter Club home page Giter Club logo

Comments (5)

RomanYankovsky avatar RomanYankovsky commented on June 1, 2024

I'm not familiar with FPC syntax. And to be honest, I don't need this. If FPC support is really needed, somebody has to lead this initiative. But I can help, of course.

from delphiast.

quartexNOR avatar quartexNOR commented on June 1, 2024

FPC (freepascal / lazarus) is not that different. FPC is enginered to support Delphi as much as possible, but typically it's a couple of years behind EMB. Which is understandable.

The great thing about FPC is that it broadens the use of the code to linux and OS X. I use ubuntu a lot at home for instance, and being able to use my tools under linux is valuable.

One of the reasons Smart Pascal was not ported to OS X or Linux is that we used to much "delphi" centric components and code to make it portable. SMS would have been great under linux, being able to automate builds and generating nodeJS services. I presently have a build farm setup with 2 raspberry PI devices :)

Either way, it can be valuable to keep FPC in mind when writing code, as it broadens the use of the library to the FPC user-base as well. When possible ofcourse.

from delphiast.

RomanYankovsky avatar RomanYankovsky commented on June 1, 2024

Is there a document that describe the difference between Delphi and FPC syntax?

from delphiast.

quartexNOR avatar quartexNOR commented on June 1, 2024

It's about 90% compatible.

Only difference (that springs to mind) is:

Event handlers must have @ when assigned:

FOnMyEvent:=@SomeProc;

And for generics you need to use specialization for some types.

E.g:

Type
TMySpecialList = Class(TObjectList[TSpecialItem])
//Add methods here
end;

Must be written like this:

TCustomSpecial = TObjectList[TSpecialItem];
TMySpecialList = Specialize(TCustomSpecial)
// add methods here
end;

See wiki: http://wiki.freepascal.org/Generics

Other than that (as far as I remember), its pretty much the same stuff.
Most Delphi projects compile just fine, as long as the above rules are followed, and taking third party components and dependencies into account ofcourse.

Note the [ and ] chars were used, as the site removed ordinary LESS and MORE chars :)

from delphiast.

Wosi avatar Wosi commented on June 1, 2024

I made a pull request addressing this enhancement.
#88

from delphiast.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.