# -*- mode: snippet -*-
# name: try … finally …
# key: tryf
# --
try
{
  $0
}
finally
{
  $1
}
