Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • D
immutable string planet = "Earth";

This is a runtime constant.
enum string planet = "Earth";

This is a compile-time constant.
const string planet = "Earth";

This is a runtime constant.
enum planet = "Earth";

This is a compile-time constant.
static immutable string planet = "Earth";

This is a compile-time constant.
planet : constant String := "Earth";

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