view bin/beat @ 11934:0c0c59f53dc2 draft

<wob_jonas> `` echo \'#!/usr/bin/python3; import math,time; b = math.floor(100*((time.time()+3600) % 86400) / 86.4); print("%03d.%02d"%(b//100,b%100))\' | tr \\; \\\\n > bin/beat; chmod -v a+x bin/beat
author HackEso <hackeso@esolangs.org>
date Fri, 13 Sep 2019 10:43:27 +0000
parents dea37ae411c0
children 4ade46a1e935
line wrap: on
line source

#!/usr/bin/python3
 import math,time
 b = math.floor(100*((time.time()+3600) % 86400) / 86.4)
 print("%03d.%02d"%(b//100,b%100))