Files
wren/test/signal/signal.wren
T
retoor 236d69c2d7
WrenCI / linux (push) Waiting to run
WrenCI / mac (push) Waiting to run
WrenCI / windows (push) Waiting to run
New modules.
2026-01-24 19:35:43 +01:00

11 lines
313 B
JavaScript
Vendored

// retoor <retoor@molodetz.nl>
import "signal" for Signal
System.print(Signal.SIGINT) // expect: 2
System.print(Signal.SIGTERM) // expect: 15
System.print(Signal.SIGHUP) // expect: 1
System.print(Signal.SIGQUIT) // expect: 3
System.print(Signal.SIGUSR1) // expect: 10
System.print(Signal.SIGUSR2) // expect: 12