Binary Environment (#256)

Adds a fission environment for arbitrary linux binaries.
This commit is contained in:
Erwin van Eyk
2017-07-26 12:29:54 -07:00
committed by Soam Vasani
parent a8fc7a7029
commit 85983c91cd
11 changed files with 348 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
package main
import (
"fmt"
"os"
)
// See README.md in the examples/binary directory for instructions
func main() {
fmt.Println("Hello World!")
fmt.Printf("Environment: %v", os.Environ())
}