Skip to content

Instantly share code, notes, and snippets.

@zbroyar
Created April 11, 2017 13:47
Show Gist options
  • Save zbroyar/454babba4998e609936786b8425b35de to your computer and use it in GitHub Desktop.
Save zbroyar/454babba4998e609936786b8425b35de to your computer and use it in GitHub Desktop.
#use "topfind"
#require "unix"
open Printf
let _ =
let ts = Unix.gettimeofday () in
let str = sprintf "%0.5f" ts in
printf "%b\n" (ts = float_of_string str);
let str = sprintf "%0.6f" ts in
printf "%b\n" (ts = float_of_string str)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment