FFGNDS-Discord-Dice-Roller icon indicating copy to clipboard operation
FFGNDS-Discord-Dice-Roller copied to clipboard

When I post Markdown code in Lisp it rolls dice.

Open Venoflux opened this issue 2 years ago • 1 comments

My lisp code below shared in Discord causes it to roll dice and I am not quite sure why, but I thought I should report it to you. Screenshot 2022-06-25 160452

; Exercise 9
(define (in x)
  (cond [(number? x) x]
        [(string? x) (string-length x)]
        [(image? x) (* (image-height x) (image-width x))]))

Venoflux avatar Jun 25 '22 13:06 Venoflux