gem install benchmark-ips
gem install ffi
ruby ruby/start.rb
cd c_src/
gcc -shared -o libpow.so -fPIC pow.c
cd c_src/
gcc pow.c -lgmp -o testrunner
- utilize parallels to move power calculation to processes let @current_number only return the potencies
- OR use https://github.com/rtomayko/posix-spawn#posixspawn-as-a-mixin and move the potency calculation and the number check to separate file