Thomas Tan

Results 3 comments of Thomas Tan

Hi, I'm a chronic sufferer from audio latency. While it was possible for me to fix my setup, it was *EXTREMELY* difficult to do so, having to try out many...

``` const x1 = list(2, 3); const x2 = list(x1, pair(1, x1)); display_list(x2); // list(list(2, 3), [1, list(2, 3)]) ``` The cause is an incorrect algorithm that failed to handle...

Example test case: ``` display(x => x); ``` Expected output: `x => x` displays in the REPL, and after execution ends, the function is returned as the result of the...