Example code (taken from less2css.org):
// Selector interpolation only works in 1.3.1+. Try it!
@theGoodThings: ~".food, .beer, .sleep, .javascript";
@{theGoodThings} {
font-weight: bolder;
}
The value assigned to variable will also work if written this way (not escaped):
@theGoodThings: .food, .beer, .sleep, .javascript;
But will fail with a ParseError: Unrecognised input if any term has an hyphen (-) on it, like this:
@theGoodThings: .tasty-food;