Initial work on generating tools from equations and descriptions

This commit is contained in:
Daniel Dunn
2025-04-02 00:13:17 -06:00
parent 08e43b8a42
commit 0d025a90af
11 changed files with 254 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
import { InitialValuesType } from './types';
export function main(input: string, options: InitialValuesType): string {
return input + 'pp';
}