13 lines
340 B
Go
13 lines
340 B
Go
package models
|
|
|
|
//type Language struct {
|
|
// Name string
|
|
// CompileCmd []string //source: src;result:executable
|
|
// RunCmd []string //source: executable
|
|
//}
|
|
//
|
|
//var Languages = []Language{
|
|
// {Name: "gcc std=c90",
|
|
// CompileCmd: []string{"gcc", "src", "-std=c90", "-o", "executable"},
|
|
// RunCmd: []string{"executable"}},
|
|
//}
|