💥 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()