mirror of
https://github.com/fluencelabs/asmble
synced 2025-04-24 14:22:20 +00:00
11 lines
88 B
Go
11 lines
88 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Printf("Args: %v", os.Args)
|
|
}
|