Skip to content

Instantly share code, notes, and snippets.

@damienstanton
Last active September 16, 2025 15:13
Show Gist options
  • Save damienstanton/64432ee22e0826d1f4fb66518ebeaa3d to your computer and use it in GitHub Desktop.
Save damienstanton/64432ee22e0826d1f4fb66518ebeaa3d to your computer and use it in GitHub Desktop.
structure Box α where
val: α
namespace Box
def extract (b : Box α) := b.val
end Box
def a := Box.mk 42
def b := a.extract
def c := Box.mk b
example : a = c := by rfl
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment