Professional Programmer Proves Prolog Prolongs Productivity
Timothy Foster

Timothy Foster @auroratide

About: Trying to make the world a funner place through coding.

Location:
Dallas
Joined:
Jun 6, 2019

Professional Programmer Proves Prolog Prolongs Productivity

Publish Date: Apr 1
1 0

At least... probably 🙃

productive(X) :- not(takes_breaks(X)).
takes_breaks(X) :- not(debugging(X)).
debugging(X) :- uses_prolog(X).

programmer(aurora).
programmer(eventide).

uses_prolog(aurora).
uses_javascript(eventide).
Enter fullscreen mode Exit fullscreen mode

Prolog is a logical language. Therefore, its output is truth:

?- productive(aurora).
true.

?- productive(eventide).
false.
Enter fullscreen mode Exit fullscreen mode

Hence, the conclusion: Prolog prolongs productivity, Q.E.D.

Note: This is an April Fools' Day joke post!

Comments 0 total

    Add comment