export function DoExpression(node: Object) {
  this.word("do");
  this.space();
  this.print(node.body, node);
}