bsl/examples/indent.rkt
#lang planet wrturtle/pyret/bsl

# mess around with the indentation and see what happens
fun fac(n):
  if n == 0:
    1
  else:
    n * fac(n-1)