A little demo for Bree

This commit is contained in:
Scott Richmond 2022-04-04 19:07:54 -04:00
parent d663f48b6f
commit 4c2d05cbe1

View File

@ -1 +1,8 @@
"Hello, world."
fn explode_if_ten {
(10) -> panic! ("That was ten")
(x) -> print ("Ok, not ten!")
}
explode_if_ten (8)
explode_if_ten (10)