show/hide this revision's text 2 made real bullet points

*)

  • As David says, "Because it provides the best middle ground between C++ and Visual Basic"

    *)

  • Provides the programmer with a lot of control, access to OS functions

    *)

  • Produces relatively small native code executables

    *)

  • By and large, compiler produces relatively fast code, almost comparable to C/C++ code (but suboptimal for floating point stuff); has a nice calling convention.

    *)

  • If code needs to be /faster/, it has very powerful inline assembler support, currently supporting up to SSE4.2 instruction sets. (You can write BASM assembly code without having to write the entire program in assembly.)

    *)

  • Compiles fast

    *)

  • Easy to make GUIs

    *)

  • Nice IDE and debugger

    *)

  • I personally think the pascal-style syntax is somewhat easier to read (and especially re-read after a while) than C-style (that's not a major point, though); code is more structured and clearer overall, IMHO.

show/hide this revision's text 1 [made Community Wiki]

*) As David says, "Because it provides the best middle ground between C++ and Visual Basic"

*) Provides the programmer with a lot of control, access to OS functions

*) Produces relatively small native code executables

*) By and large, compiler produces relatively fast code, almost comparable to C/C++ code (but suboptimal for floating point stuff); has a nice calling convention.

*) If code needs to be /faster/, it has very powerful inline assembler support, currently supporting up to SSE4.2 instruction sets. (You can write BASM assembly code without having to write the entire program in assembly.)

*) Compiles fast

*) Easy to make GUIs

*) Nice IDE and debugger

*) I personally think the pascal-style syntax is somewhat easier to read (and especially re-read after a while) than C-style (that's not a major point, though); code is more structured and clearer overall, IMHO.