compile-run
Version:
You can execute programs in different languages using this package
8 lines (7 loc) • 301 B
TypeScript
import { Options } from "../types";
/**
* Compiles a C source file and returns a promise that resolves with the path of the executable
* @param filePath A path like string
* @param options Optional options
*/
export declare function compileC(filePath: string, options?: Options): Promise<string>;