grammar me.dollyn.goide.Golang with org.eclipse.xtext.xbase.Xbase | |
generate golang "http://www.dollyn.me/goide/Golang" | |
GoModel: | |
package = ID | |
imports += Import* | |
; | |
Import: | |
'import' package=STRING | |
; | |
terminal decimal_digit : "0" .. "9" .; | |
terminal octal_digit : "0" .. "7" .; | |
terminal hex_digit : "0" .. "9" | "A".. "F" | "a" .. "f" .; |