Skip to content

Instantly share code, notes, and snippets.

@up1
Last active December 15, 2024 14:48
Show Gist options
  • Save up1/dfd4dd67b60d58c4d135837920eb928a to your computer and use it in GitHub Desktop.
Save up1/dfd4dd67b60d58c4d135837920eb928a to your computer and use it in GitHub Desktop.
Programming :: performance
$go go build -o main main.go
$./main
# Before
Number of primes found: 50847534
Time taken: 9.29 seconds
# After
Number of primes found: 50847534
Time taken: 5.34 seconds
$javac PrimeNumbers.java
$java PrimeNumbers
# Before
Number of primes found: 50847534
Time taken: 8.89 seconds
# After
Number of primes found: 50847534
Time taken: 6.21 seconds
$dotnet build
$dotnet run bin/Debug/net9.0/csharp.dll
# Before
Number of primes found: 50847534
Time taken: 10.55 seconds
# After
Number of primes found: 50847534
Time taken: 9.39 seconds
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment