
public class ModuleNode extends Node {
	private ConsNode content;
	public ConsNode getContent() {
		return content;
	}
	public void setContent(ConsNode content) {
		this.content = content;
	}
	@Override
	public String toIndentedString(int surroundingIndentation) {
		return Node.toIndentedString(content, surroundingIndentation);
	}
}
