mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-03 10:37:46 +00:00
720a54a0fe
* stdlib: extend stdlib to allow import of more packages
7 lines
104 B
Go
7 lines
104 B
Go
package os
|
|
|
|
type Signal interface {
|
|
String() string
|
|
Signal() // to distinguish from other Stringers
|
|
}
|