Functional Programming

Wondering what functional programming is all about. You can’t find a more simple introduction than this one.

If you think it might be boring to read about another programming methodology, check out these highlights,

In functional programming model

  • basic building blocks are functions which can be executed in any order.
  • order of execution does not matter.
  • each parts can be executed parallely without worying about thread safety.
  • XSLT follows functional programming model.

Leave a Comment