about summary refs log tree commit diff stats
path: root/html/expected-result.png
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-02-23 16:51:24 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-02-23 16:51:24 -0800
commit9188a8d5c0c8efe78333274116b36a0486814a36 (patch)
treeed649437db072d4f3ca23baa3e42141df4bdbc9a /html/expected-result.png
parent29c006d6a47e9e0d5a7943efb9102b233be95e79 (diff)
downloadmu-9188a8d5c0c8efe78333274116b36a0486814a36.tar.gz
2695 - todo for recipe variables
Basically I need to make these tests work:

- Test 1: specializing while saving shape-shifting recipe literal
recipe f a:address:shared:_elem -> b:address:shared:_elem [
  local-scope
  load-ingredients
  reply a
]

recipe main [
  local-scope
  {x: (recipe (address shared number) -> (address shared number))} <- copy f
  y:address:shared:number <- new number:type
  *y <- copy 34
  z:address:shared:number <- call x, y
  $print *z, 10/newline
]

- Test 2: passing recipe literal to higher-order recipe
recipe g x:address:shared:number, {h: (recipe (address shared number) -> (address shared number))} -> y:address:shared:number [
  local-scope
  load-ingredients
  y <- call f, x
]

recipe main [
  local-scope
  x:address:shared:number <- new number:type
  *x <- copy 34
  y:address:shared:number <- g x, f
  $print *y, 10/newline
]
Diffstat (limited to 'html/expected-result.png')
0 files changed, 0 insertions, 0 deletions