1306 shaares
Un langage ou tout est mal fait
Quelques pépites
DreamBerd has a built-in garbage collector that will automatically clean up unused variables. However, if you want to be extra careful, you can specify a lifetime for a variable, with a variety of units.
const const name<2> = "Luke"! //lasts for two lines
const const name<20s> = "Luke"! //lasts for 20 seconds
Booleans can be true, false or maybe.
Technical info: Booleans are stored as one-and-a-half bits.