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
15 lines
225 B
JavaScript
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"
|
|
} |