Does this count as a gabba-minus-one status?
Today I hacked just enough on #Tidal #TidalCycles to get it loading in the #Hugs #Hugs98 #Haskell interpreter from 2006 (as packaged by Debian Bookworm with extra goodies).
OSC and other Network stuff is completely stubbed out (will error if anything tries to use it). Ableton Link might work - had to do weird things in the FFI to compile it. Chords are gone (no GADTs), colours too for now.
In any case, Hugs doesn't have proper multithreading (it has yield, but no threadDelay...) so it's probably useless for realtime work.
```
$ hugs -98 -E"nano +%d %s" -P:hugs:src:tidal-link/src/hs Sound.Tidal.Context
__ __ __ __ ____ ___ _________________________________________
|| || || || || || ||__ Hugs 98: Based on the Haskell 98 standard
||___|| ||__|| ||__|| __|| Copyright (c) 1994-2005
||---|| ___|| World Wide Web: http://haskell.org/hugs
|| || Bugs: http://hackage.haskell.org/trac/hugs
|| || Version: September 2006 _________________________________________
Hugs mode: Restart with command line option +98 for Haskell 98 mode
Type :? for help
Sound.Tidal.Context> s (parseBP_E "bd sn")
(0>½)|s: "bd"
(½>1)|s: "sn"
Sound.Tidal.Context>
```