Skip to content

Instantly share code, notes, and snippets.

@seanmccann
Created June 5, 2014 22:36
Show Gist options
  • Save seanmccann/c295bdca22befa291590 to your computer and use it in GitHub Desktop.
Save seanmccann/c295bdca22befa291590 to your computer and use it in GitHub Desktop.
var foo = "foo"
var bar = "bar"
var baz = ""
var n = 0
do {
baz = foo + bar
n++
} while n < 1000000
@pjaspers
Copy link

pjaspers commented Jun 5, 2014

Compiling with '-Ofast' speeds things up to 0.9s.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment