Open snowe2010 opened 2 years ago
Also with Racket...
Current version of Racket is 8.9 (8.10 near the end of this month) but the TIO version is 6.x from 2016... Math functions have even changed as well... Here are the docs for log
in Racket v6.5 (web archive link) and here are the current docs for log
.
In the previous versions of Racket, we couldn't supply a second argument to log
to tell it what the base it. So to port back (log 15 3)
, we need to use (/ (log 15) (log 3))
for TIO.
Python on TIO is at version 3.7.4 according to platform.python_version()
. Node.js is at version 11.6.0 (current is 20.4.0, LTS is 18.16.1). Go on TIO is at version go1.11.13
released in 2019, current is at go1.20.6
.
the ruby version is out of date by a few years. can it be updated to 3.0?