JS: Include qhelp example in test suite

This commit is contained in:
Asger Feldthaus
2020-06-15 17:37:26 +01:00
parent 824054ba62
commit 3242f5ed94
3 changed files with 7 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
function distance({x: number, y: number}) {
return Math.sqrt(x*x + y*y);
}