Function prototype: Difference between revisions

m
(→‎{{header|OCaml}}: added ocaml)
Line 929:
 
(* A prototype declaration for a function that utilizes named parameters *)
val named_arg : ~param1:int -> ~param2:int -> unit
 
(* An explanation and example of any special forms of prototyping not covered by the above *)
Line 938:
(* A prototype declaration for a function with polymorphic argument *)
val poly_args : 'a -> unit</lang>
 
 
=={{header|Oforth}}==