f-operator added by megane on Mon Jun 11 15:39:07 2018

(use shift-reset)
(let ((captured-k
       (reset (print (shift f f)))))
  (print "str: '"
	 (with-output-to-string
	   (lambda ()
	     (captured-k "this should go to the string")))
	 "'"))

;; $ csi -qbn f-operator.scm 
;; this should go to the string
;; str: ''