Omnimaga

General Discussion => Technology and Development => Computer Programming => Topic started by: jb3navides on June 16, 2013, 10:27:43 pm

Title: Types of programming
Post 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:
Code: [Select]
def function1():
    print "Hi"
    function2()

def function2():
    print "Hello"
    function3()
Title: Re: Types of programming
Post by: Juju on June 16, 2013, 11:02:20 pm
I would say it's imperative programming.