15 lines
347 B
Go
15 lines
347 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"}},
|
||
|
}
|
||
|
|