Skip to content

Commit

Permalink
grol 0.34.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ldemailly committed Aug 5, 2024
1 parent a534e04 commit cbf60c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion _includes/grol_wasm.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
}
n*fact(n-1) // recursion
}
a=[fact(5), "abc", 76-3] // heterogeneous array
a=[fact(5), "abc", sqrt(2)] // heterogeneous array, math functions
/* maps also can have any key,value types: */
m={"str key": a, 42: "str val"}</textarea>
</div>
Expand All @@ -128,6 +128,7 @@
return str.replace(/\+/g, '%2B')
.replace(/ /g, '+')
.replace(/\n/g, '%0A')
.replace(/\t/g, '%09')
.replace(/</g, '%3C')
}
const encodedValue = customEscape(paramValue)
Expand Down
Binary file modified grol.wasm
Binary file not shown.

0 comments on commit cbf60c6

Please sign in to comment.