Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Groovy
static final planet = "Earth"
static final planet = 'Earth'
static final planet = /Earth/
static final planet = '''Earth'''
static final planet = """Earth"""

Various ways to define strings in Groovy.
planet : constant String := "Earth";

New implementation...
< >
programming-idioms.org