3

Created my first self driving car brain, just one line code,

while driving:
if GoingToHitSomething == true:
dont()

Comments
  • 1
    @gitlog Why so serious? 🤣
  • 2
    Please use
    if true == GoingToHitSomething:

    Why, you ask? It looks stupid, you say?

    Because with an accidentally written
    if GoingToHitSomething = true:
    your vehicle won't move any bit ^^
  • 2
    While not GoingToHitSomething:
    drive() 😂
Add Comment