mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
9 lines
163 B
JavaScript
9 lines
163 B
JavaScript
/* simple hana xs demo library, which can be used by multiple endpoints */
|
|
|
|
function multiply(x, y) {
|
|
return x * y;
|
|
}
|
|
|
|
function add(x, y) {
|
|
return x + y;
|
|
} |