You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It'd be convenient for debugging to have a prefix operator (or some other syntax) that expands like %x => unsafeTracePrint(x, __FILE__ ++ __LINE__ ++ show(x)) (not literally that for thunk-sharing, formatting, etc. reasons. (see Rust's dbg! for prior art)
The text was updated successfully, but these errors were encountered:
Seems reasonable, not sure what the best syntax would be. Would prefer to not just use a symbol, but I would also like to minimize the number of things we add that look like functions but aren't.
It'd be convenient for debugging to have a prefix operator (or some other syntax) that expands like
%x
=>unsafeTracePrint(x, __FILE__ ++ __LINE__ ++ show(x))
(not literally that for thunk-sharing, formatting, etc. reasons. (see Rust'sdbg!
for prior art)The text was updated successfully, but these errors were encountered: