Zulip Chat Archive

Stream: general

Topic: parser bug?


Kevin Buzzard (Jun 25 2020 at 18:19):

Should

import tactic

example (P : Prop) : P  P := by {tauto!}

work? (it doesn't; but

example (P : Prop) : P  P := by {tauto! }

does)

Kenny Lau (Jun 25 2020 at 20:15):

well this doesn't matter because in the current style we always use { xxx } (one space after the opening bracket and one space before the closing bracket)


Last updated: Dec 20 2023 at 11:08 UTC