It’s hard to describe, so I made a small video. Somehow the textbox is cropped and the vertical scroll bar is not where it should be. Here is me, trying to read the first line of the exception:
3 Likes
Are you working on it right now? I have another type of exception and it looks different.
The gif is from an exception at compile time. I tried to use the update
function that isn’t available in the Clojure version on Codingame. To reproduce use the following code:
(defn -main [& args]
(print #'update))
The exceptions at runtime look better. To reproduce use:
(defn -main [& args]
(print (/ 1 0)))
It’s not cropped and the vertical scrollbar is where it should be.