UNPKG
@meldscience/meld
Version:
latest (0.1.0)
0.1.0
pipeable one-shot prompt scripting toolkit
@meldscience/meld
/
tests
/
test-files
/
test.ts
9 lines
(6 loc)
•
147 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
export
function
add
(
a
:
number
,
b
:
number
):
number
{
return
a + b; }
export
function
subtract
(
a
:
number
,
b
:
number
):
number
{
return
a - b; }