Fsharp: Comment

By Xah Lee. Date: . Last updated: .

Line Comment

Line comment start with two slashes to end of line. Anything in between is ignored.

// this is comment

3 + 4 // also comment

Block Comment

Block comment start with (* and ends wiht *). Anything in between is ignored.

(* block comment *)

(* block comment
(* can be nested *)
*)