Skip to content

Instantly share code, notes, and snippets.

@robertlemmen
Created August 16, 2018 20:28
my $time = DateTime.new(1534447684).utc + Duration.new(0.002);
for ^100 -> $i {
$time = $time + Duration.new(2.rand);
say "$i $time";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment