view samples/iterfib.tp @ 280:23b52d2d05a0

Don't try to replace self in a macro expansion since it's unlikely to be the desired behavior. A more explicit means of specifying what variables should be replaced in a quote expression is needed.
author Michael Pavone <pavone@retrodev.com>
date Mon, 21 Jul 2014 19:30:23 -0700
parents 3a169ebb3224
children
line wrap: on
line source

#{

fib <- :n {
  last <- 0
  cur <- 1
  counter <- 0
  while: { counter < n } do: {
  	counter <- counter + 1
  	tmp <- last
  	last <- cur
  	cur <- last + tmp
  }
  cur
}

main <- {
  print: (string: (fib: 30)) . "\n"
}

}