I want to write an infix expression but I can't use {} to make it infix, but neither can I use infix dots:
define-syntax ⊢
syntax-rules (:)
[(⊢ Γ e : t) (void)]
;; I didn't expect this would work
{Γ ⊢ e2 : t}
;; but this doesn't work either
(Γ . ⊢ . e2 : t)
I want to write an infix expression but I can't use {} to make it infix, but neither can I use infix dots: