What is Ocaml?
1.
A French-made programming language, that can be made to work like lisp, C, Java or whatever else you like. It can be interpreted, compiled natively or compiled to bytecode. Overall it's a rather academic but very powerful programming language.
# let rec ocaml_reverse lst =
match lst with
| ->
| h::t -> (ocaml_reverse t)@
h
;;
val ocaml_reverse : 'a list -> 'a list = <fun>
# ocaml_reverse 1;2;3;;
- : int list = 3; 2; 1
See
Random Words:
1.
Adj. of irony. (made up by two very crazy ladies)
A: Hey, the unsinkable Titanic just sunk.
V: Ah, the ironicness.
See irony, iron..
1.
It's like a code of Ethics, but it's not.
Examples of items in this code:
1. Don't back down from a fight.
2. Get Mo..