mirror of
https://github.com/danog/gllvm.git
synced 2024-12-11 17:39:38 +01:00
15 lines
125 B
Go
15 lines
125 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
// Parse command line
|
||
|
var args = os.Args
|
||
|
args = args[1:]
|
||
|
|
||
|
sanityCheck()
|
||
|
|
||
|
}
|