Skip to content

Files

Latest commit

b474a67 · May 8, 2018

History

History
8 lines (7 loc) · 636 Bytes

functional-programming.md

File metadata and controls

8 lines (7 loc) · 636 Bytes

<-- Return to index

Functional Programming

Does the language support functional programming?

PHP

Yes, because PHP allows the passing of function references. Accordingly, PHP has iterative abilities and factory/generator classes can be implemented.

Python

Yes, Python offers several features that allow for functional programming. Namely, iterators and generators.