Following the answer in this question I installed the simply-scheme package and ran the follwing code:
#lang simply-scheme
(se (butlast (bf "this"))
"world")
But what I got is '(hi "world")
rather than (hi "world")
. Why is there an quote mark and how to fix it?