First page Back Continue Last page Overview Image
What does it look like?
Java, except:
- No ; required
- Single-file, classless script or Classes with inheritance
- def to define variables and methods, type optional
a = 1
println a
def b = 2
println b
int c = 3
println c