Narcissist: Difference between revisions

Line 176:
else:
print("Reject")
</lang>
 
=={{header|Racket}}==
 
This shows a REPL interaction, where the second expression is what is
typed when the code stops to read some input.
 
<lang Racket>
-> ((lambda (x) (equal? (read) (list x (list 'quote x))))
'(lambda (x) (equal? (read) (list x (list 'quote x)))))
((lambda (x) (equal? (read) (list x (list 'quote x))))
'(lambda (x) (equal? (read) (list x (list 'quote x)))))
#t
</lang>