Files
privacy.sexy/src/application/Context/State/Code/Generation/Languages/BatchBuilder.ts
2021-01-13 16:31:20 +01:00

11 lines
303 B
TypeScript

import { CodeBuilder } from '@/application/Context/State/Code/Generation/CodeBuilder';
export class BatchBuilder extends CodeBuilder {
protected getCommentDelimiter(): string {
return '::';
}
protected writeStandardOut(text: string): string {
return `echo ${text}`;
}
}