0

Out of curiosity, what programming languages do not have an "If" statement?

First language that somehow operates completely without an If Then control structure gets the answer.

-1 given to languages no one has actually heard of (eg: "My friend made a programming language in college called 'EwoK' that used a 'when' statement instead...")

Toby
  • 627
  • 4
  • 13

1 Answers1

1

Most assembly languages do not have an if statement, instead, they branch or jump to another location based on the result of a logical comparison or processor flag check.

Will A
  • 24,392
  • 5
  • 48
  • 60