12 lines
323 B
Go
12 lines
323 B
Go
|
package neralie
|
||
|
|
||
|
// This decimal clock has two groups of 3 digits, called the beat & the pulse.
|
||
|
// A beat contains 1000 pulses, and equivalent to 86.4 seconds.
|
||
|
//
|
||
|
// Examples:
|
||
|
// 6:00 250:000
|
||
|
// 12:00 500:000
|
||
|
// 18:00 750:000
|
||
|
//
|
||
|
// Boosted lovingly from https://github.com/XXIIVV/Oscean/blob/master/scripts/lib/neralie.js
|