Reason: None provided.
Just plug this into a PowerShell command line and see how quick it takes to count to 1 billion. The weekend will be over before it's done.
1..1000000000 | % { $_ }
1 year ago
3 score
Reason: None provided.
Just plug this into a PowerShell command line and see how quick it takes to count to 1 billion at a rate of around 6000 per second:
1..1000000000 | % { $_ }
1 year ago
1 score
Reason: Original
Just plug this into a PowerShell command line and see how quick it takes to count to 1 trillion at a rate of around 6000 per second:
1..1000000000 | % { $_ }
1 year ago
1 score