1ol(1) General Commands Manual ol(1)
2
3
4
6 ovm - Owl Lisp virtual machine
7
9 ovm heapimage [arg]...
10
12 Owl Lisp is a purely functional Lisp based on a subset of R7RS Scheme.
13 Ovm can be used to run precompiled bytecode images of programs.
14
16 Ovm needs only one argument, which is the heap image, and the rest of
17 the arguments are passed over to the program.
18
20 $ echo '(lambda (args) (print args) 0)' | ol -o demo.fasl
21 $ ovm demo.fasl 11 22 33
22 (demo.fasl 11 22 33)
23 $ (echo '#!/usr/bin/ovm'; cat demo.fasl) > demo
24 $ chmod +x demo
25 $ ./demo 11 22 33
26 (./demo 11 22 33)
27 $ echo $?
28 0
29
31 ol(1),gcc(1)
32
34 Owl Lisp and this manual page were written by Aki Helin
35 <aki.helin@iki.fi>.
36
37
38
39 December 14, 2011 ol(1)