@aartaka Since Scheme is in some respects a dialect of ALGOL, just replace all the parens with BEGIN/END, & any uppercased symbol has an implicit BEGIN.
DEFINE tf LAMBDA BEGIN test END
IF EQUAL? test #t END
DISPLAY "yes" END
DISPLAY "no" END
END END END
