fork download
  1. (let ((xs '((a . 1) (b . 2))))
  2. (let ((p (assoc 'a xs))
  3. (q (assoc 'c xs)))
  4. (display (if p "Found" "Not found"))
  5. (newline)
  6. (display (if q "Found" "Not found"))))
Success #stdin #stdout 0s 7856KB
stdin
Standard input is empty
stdout
Found
Not found