Omnimaga
General Discussion => Technology and Development => Computer Programming => Topic started by: jb3navides on June 16, 2013, 10:27:43 pm
-
hey guys if I have a program that is a series of functions what type of programming was used to make it?
like this:
def function1():
print "Hi"
function2()
def function2():
print "Hello"
function3()
-
I would say it's imperative programming.