
public class BlockNode extends Node {
	private ConsNode content;

	public BlockNode(ConsNode body) {
		this.content = body;
	}
	public void setContent(ConsNode content) {
		this.content = content;
		
	}
	public ConsNode getContent() {
		return content;
	}
	@Override
	public String toIndentedString(int surroundingIndentation) {
		return String.format("{%s%s}", Node.toIndentedString(content, surroundingIndentation), Node.newline(surroundingIndentation));
	}

}
