Skip to content

Instantly share code, notes, and snippets.

@evilmucedin
Created August 30, 2016 10:56
Show Gist options
  • Save evilmucedin/9590f8b5d79fc2bd082079032d24270f to your computer and use it in GitHub Desktop.
Save evilmucedin/9590f8b5d79fc2bd082079032d24270f to your computer and use it in GitHub Desktop.
03:55 denplusplus@denplusplus-mbp:~/Temp/CSharp$ mcs -unsafe -debug- Spaces.cs; time mono -O=all ./Spaces.exe
'1234567890' -> '1 2 3 4 5 6 7 8 9 0'
real 0m12.823s
user 0m12.609s
sys 0m0.090s
03:55 denplusplus@denplusplus-mbp:~/Temp/CSharp$ g++ -O3 Spaces.cpp -o Spaces --std=c++14 -march=native -g -DNDEBUG; time ./Spaces
1 2 3 4 5 6 7 8 9 0
real 0m4.582s
user 0m4.559s
sys 0m0.014s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment