mirror of
https://github.com/fluencelabs/asmble
synced 2025-04-24 22:32:19 +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)
|
||
|
}
|