mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-07-26 06:38:42 +00:00
13 lines
174 B
Go
13 lines
174 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println("stdin: ", os.Stdin.Fd())
|
|
fmt.Println("stdout:", os.Stdout.Fd())
|
|
fmt.Println("stderr:", os.Stderr.Fd())
|
|
}
|