mirror of
https://github.com/LucasVbr/croissant.git
synced 2026-05-13 17:12:10 +00:00
8 lines
206 B
OCaml
8 lines
206 B
OCaml
open Statements
|
|
|
|
type source_files = SourceFile of statements
|
|
|
|
let pp_source_files = function
|
|
| SourceFile stmts ->
|
|
let pp_stmt = pp_statements stmts in
|
|
Printf.sprintf "SourceFile(%s)" pp_stmt |