2024-08-16 11:05:29 +00:00
|
|
|
package models
|
|
|
|
|
|
|
|
type Language struct {
|
2024-08-25 12:15:41 +00:00
|
|
|
Name string
|
|
|
|
CompileCmd []string //source: src;result:executable
|
|
|
|
RunCmd []string //source: executable
|
|
|
|
}
|
|
|
|
|
2024-08-25 16:16:34 +00:00
|
|
|
var Languages = [...]Language {
|
2024-08-25 12:15:41 +00:00
|
|
|
{Name : "gcc std=c90",
|
|
|
|
CompileCmd : []string{"gcc", "src","-std=c90","-o","executable"},
|
|
|
|
RunCmd : []string{"executable"}},
|
2024-08-16 11:05:29 +00:00
|
|
|
}
|
2024-08-25 16:16:34 +00:00
|
|
|
|