Add cross-compilation script

This commit is contained in:
Zachary Yedidia
2016-03-22 18:17:11 -04:00
parent a5b0befba1
commit d20df210d0
84 changed files with 53 additions and 5 deletions

11
runtime/syntax/java.micro Normal file
View File

@@ -0,0 +1,11 @@
## Here is an example for Java.
##
syntax "Java" "\.java$"
color type "\b(boolean|byte|char|double|float|int|long|new|short|this|transient|void)\b"
color statement "\b(break|case|catch|continue|default|do|else|finally|for|if|return|switch|throw|try|while)\b"
color type "\b(abstract|class|extends|final|implements|import|instanceof|interface|native|package|private|protected|public|static|strictfp|super|synchronized|throws|volatile)\b"
color constant ""[^"]*""
color constant "\b(true|false|null)\b"
color comment "//.*"
color comment (s) "/\*.*?\*/"
color comment (s) "/\*\*.*?\*/"