about summary refs log tree commit diff stats
path: root/static_dispatch.mu
diff options
context:
space:
mode:
Diffstat (limited to 'static_dispatch.mu')
-rw-r--r--static_dispatch.mu6
1 files changed, 3 insertions, 3 deletions
diff --git a/static_dispatch.mu b/static_dispatch.mu
index 00160a2a..9ef3e33c 100644
--- a/static_dispatch.mu
+++ b/static_dispatch.mu
@@ -1,16 +1,16 @@
-recipe test a:number -> b:number [
+def test a:number -> b:number [
   local-scope
   load-ingredients
   b <- add a, 1
 ]
 
-recipe test a:number, b:number -> c:number [
+def test a:number, b:number -> c:number [
   local-scope
   load-ingredients
   c <- add a, b
 ]
 
-recipe main [
+def main [
   local-scope
   a:number <- test 3  # selects single-ingredient version
   $print a, 10/newline