Add st-handle.h
[panda.git] / st / System.st
blobf6e3b7e3def1cb033923c2f5fc623b797bc0dec1
2 "accessing"
4 System method!
5 at: key put: object
6         ^ globals at: key put: object!
8 System method!
9 at: key
10         ^ globals at: key!
12 System method!
13 globals
14         ^ globals!
16 System method!
17 symbols
18         ^ symbols!
20 "system control"
22 System method!
23 startupSystem
24         self exitWithResult: nil doIt printString!
26 System method!
27 exitWithResult: anObject
28         <primitive: 'System_exitWithResult'>
29         self primitiveFailed!
31 System method!
32 exit
33         self exitWithResult: nil!