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 / keybase.md
Created March 15, 2021 17:01
keybase.md

Keybase proof

I hereby claim:

  • I am fluz on github.
  • I am fluz (https://keybase.io/fluz) on keybase.
  • I have a public key ASAeYjzhL7W-WisFL182w7RUC6xF3CtDOhqudjbDG5GBywo

To claim this, I am signing this object:

@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);