We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The __defer__ method can be used to run code after a value runs out of scope.
__defer__
import basics struct Bomb () func __defer__(this *Bomb) { print("kapow!") } func main { my_homemade_bomb Bomb }
kapow!
Table of Contents