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

11 lines
304 B
TypeScript

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