UNPKG

calcium-lang

Version:
12 lines 208 B
/** * represent a comment line */ export default class Comment { constructor(text) { this.text = text; } execute(env) { // Do nothing. } } //# sourceMappingURL=comment.js.map