We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb29a9a commit f662609Copy full SHA for f662609
interpreter/main/main.ml
@@ -13,7 +13,7 @@ let usage = "Usage: " ^ name ^ " [option] [file ...]"
13
let args = ref []
14
let add_arg source = args := !args @ [source]
15
16
-let quote s = "\"" ^ String.escaped s ^ "\""
+let quote = Arrange.string
17
18
let argspec = Arg.align
19
[
interpreter/text/arrange.mli
@@ -1,5 +1,6 @@
1
open Sexpr
2
3
+val string : string -> string
4
val instr : Ast.instr -> sexpr
5
val func : Ast.func -> sexpr
6
val module_ : Ast.module_ -> sexpr
0 commit comments