UNPKG
preval
Version:
latest (0.0.1)
0.0.1
Wannabe compiler tool for JS
github.com/pvdz/preval
pvdz/preval
preval
/
tests
/
cases
/
function
/
return_string.md
25 lines
(19 loc)
•
266 B
Markdown
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Preval test case
# return_string.md
>
function
>
return_string
>
>
A
function
that returns a string
## Input
`````js filename=intro function f() { return "foo"; } $(f()); `````
## Output
`````js filename=intro function f() { return "foo"; } $(f()); `````