๐Ÿ’ฅ Action-Oriented-Programming

= defining how a program should do something โ†’ serial execution

๐Ÿ“– Example:

def action_oriented_fun():
	x = 0
	y = 1
	z = x + y
goal_oriented_fun()