Some checks failed
Build and Deploy / build-macos (push) Failing after 4s
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
Build and Deploy / build-linux (push) Has been cancelled
8 lines
214 B
JavaScript
8 lines
214 B
JavaScript
// Child actor test
|
|
console.log("Child actor spawned");
|
|
|
|
if (typeof $_ !== 'undefined') {
|
|
console.log("✓ Child actor has access to $_");
|
|
} else {
|
|
console.error("✗ Child actor does NOT have access to $_");
|
|
} |