Files
olisp/bin/comp.ml
T
haxala1r d846046c4a
ci/woodpecker/push/debian Pipeline was successful
ci/woodpecker/push/nix Pipeline was successful
ci/woodpecker/push/fedora Pipeline was successful
ci/woodpecker/push/publish Pipeline was successful
Big changes:
Compiler and VM are now working well enough to support larger programs.
A test program is included and executed immediately upon running
the executable.

A more feature complete read-eval-print loop is planned.
2026-04-26 00:55:43 +03:00

24 lines
637 B
OCaml

let ( let* ) = Result.bind;;
(* Try to interpret some test source code. *)
let some_source = "(define (print-three a b c)
(print a)
(print b)
(print c))
(print-three 'hello 'world 'there)";;
(* I don't have any built-in functions at all rn, so we just use a dummy function *)
let bruh =
let* vm = Compiler.Emit.compile_src some_source in
print_endline "=== PROGRAM DISASSEMBLY";
Vm.Types.print_instrs vm.instrs;
print_endline "=== PROGRAM OUTPUT";
Vm.interpret vm;
Ok ()
let _ = match bruh with
| Ok _ -> ()
| Error s -> print_endline s