Quick
#coding warm-up of the day:
Write a function that receives four points and returns if the lines created by the points are parallel to each other.
Examples:
(0,2),(1,1),(0,3),(1,2) = True
(1,1),(0,0),(0,1),(1,0) = False
(1,4),(2,8),(0,7),(5,3) = False
#CodeNewbie #Gamedev