File: repl.ml.ref

package info (click to toggle)
ocamlformat 0.28.1-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 14,436 kB
  • sloc: ml: 63,321; pascal: 4,769; lisp: 229; sh: 217; makefile: 121
file content (7 lines) | stat: -rw-r--r-- 90 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
# let x = 2;;
val x : int = 2
# x + 2;;
- : int = 4
# let x = 2 and y = 3 in
  x + y
  ;;