File: test.ml

package info (click to toggle)
fieldslib 0.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 188 kB
  • ctags: 101
  • sloc: ml: 349; makefile: 63
file content (7 lines) | stat: -rw-r--r-- 207 bytes parent folder | download
1
2
3
4
5
6
7
(*pp camlp4o -I `ocamlfind query type-conv` -I ../lib pa_type_conv.cmo pa_fields_conv.cmo *)
type t = {
  dir : [ `Buy | `Sell ];
  quantity : int;
  price : float;
  mutable cancelled : bool;
} with fields