Files
cell/test_shop/helper.js
John Alanbrook 939269b060
Some checks failed
Build and Deploy / build-macos (push) Failing after 7s
Build and Deploy / build-linux (push) Has been cancelled
Build and Deploy / build-windows (CLANG64) (push) Has been cancelled
Build and Deploy / package-dist (push) Has been cancelled
Build and Deploy / deploy-itch (push) Has been cancelled
Build and Deploy / deploy-gitea (push) Has been cancelled
initial modules attempt
2025-05-29 18:48:19 -05:00

15 lines
225 B
JavaScript

// Helper module for testing relative imports
function greet(name) {
log.console("Hello, " + name + "!")
}
function calculate(a, b) {
return a + b
}
return {
greet: greet,
calculate: calculate,
version: "1.0.0"
}