The language I used was Moonscript, which I don't have much to say about, as I haven't actually written much in it, as can be seen below. However, it was very easy to set up, which was nice after I failed to build two programming languages, this one just had an online compiler.
So yeah, this was my 100th problem. A reflective post is upcoming.
Code runs in about 378ms on the interwebs.
X0 = 1 Y0 = 1 while Y0 < 1000000000000 X1 = 3*x0 + 2*Y0 - 2 Y1 = 4*x0 + 3*Y0 - 3 X0 = x1 Y0 = Y1 print X0
No comments:
Post a Comment