Programming

7 thoughts
last posted Jan. 27, 2016, 10:36 a.m.

4 earlier thoughts

0

It is very hard to change the data structures in functional languages because of the ripple effect.

I.e.

def a(data):
  b(data)
  c(data)

Change data would mean changing three functions.

2 later thoughts