Hello,
STklos produces executable files that contain bytecode:
$ cat > hello.stk
(display "hello")
(newline)
$ stklos-compile hello.stk -o hello
$ ./hello
hello
$ cat hello
#!/usr/bin/env stklos-script
; A -*- Scheme -*- generated file *DO NOT EDIT**
STklos (#:version "1.60" #:globals () #:expanders ())
#("hello" display newline)
11
%UV%V/
(The "%UV%V/" part is the actual bytecode)
Does this cound as a standalone executable? (STklos is not listed in StandaloneExecutables.md).