Created
August 30, 2016 10:56
-
-
Save evilmucedin/9590f8b5d79fc2bd082079032d24270f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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