This commit is contained in:
2026-02-20 15:43:39 +01:00
parent 0fffd544c0
commit 85c35e99b0
4 changed files with 150 additions and 5 deletions

View File

@@ -1 +1,16 @@
#lang racket
(require racket/class)
(provide player%)
(define player%
(class object%
(define/public (play playlist)
(displayln "playing playlist")
)
(super-new)
)
)