8 lines
209 B
Plaintext
8 lines
209 B
Plaintext
// Child actor test
|
|
log.console("Child actor spawned");
|
|
|
|
if (typeof $_ != 'undefined') {
|
|
log.console("✓ Child actor has access to $_");
|
|
} else {
|
|
log.error("✗ Child actor does NOT have access to $_");
|
|
} |