The Golden Ratio by 51b

-module(g).
-export([m/0]).
m()->io:format("1.~p",[f(8,5,1500)]).
f(X,Y,0)->g(499)*Y div X;f(X,Y,Z)->f(X+Y,X,Z-1).
g(0)->1;g(X)->10*g(X-1).

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page