removed some stdlib dependencies; license; bug fixes

This commit is contained in:
2022-02-15 22:05:11 +11:00
committed by aaron-jack-manning
parent e25b69bd44
commit f8f441648d
44 changed files with 284 additions and 101 deletions

10
lib/console.mli Executable file
View File

@@ -0,0 +1,10 @@
open General
(** Prints the provided string to the console. *)
external print : string -> unit = "print"
(** Reads a line from the console until a new line or EOF, using the specified buffer size. *)
external read_line : int -> string = "read_line"
(** Displays all provided strings to the console in order. *)
val print_all : string list -> unit