Files
wren/test/signal/signal.wren
T
retoor fdd61cc90c feat: add cJSON and SQLite amalgamation source files under deps/
Add the cJSON library (cJSON.c, cJSON.h) and SQLite amalgamation
(sqlite3.c, sqlite3.h, sqlite3ext.h, shell.c) as vendored dependencies
in the deps/ directory for use by the project build system.
2026-01-24 18:35:43 +00: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