Skip to content

Instantly share code, notes, and snippets.

View fluz's full-sized avatar
🏠
Working from home

Fernando Luz fluz

🏠
Working from home
View GitHub Profile
@fluz
fluz / SML_Cheat_Sheet.sml
Created August 26, 2020 22:56 — forked from sourabhxyz/SML_Cheat_Sheet.sml
Cheat Sheet For SML
(* SML notes *)
when writing in editor, semicolon is not required but when typing in terminal we need
semicolon
val negative_number = ~15 (* Yeah, unary minus uses the 'tilde' symbol *)
(*
- Math.e;
val it = 2.71828182846 : real
- Math.cos (Math.pi/2.0);
val it = 0.0 : real
- Math.sqrt (49.01);