meta.ml
rpmfile
1 2 3 4 5 6 type project_type = Source | Binary let project_type_of_int = function | 0 -> Binary | 1 -> Source | _ -> failwith "bad project_type conversion"
1 2 3 4 5 6
type project_type = Source | Binary let project_type_of_int = function | 0 -> Binary | 1 -> Source | _ -> failwith "bad project_type conversion"