Documentation

References

Little Programmer's Reference.

The reference is the most comprehensive resource for learning Little.

Original L Paper

The original introductory paper for the language, written in 2006.

Examples

You can find some larger code examples in the Little GitHub repo.

If you want to see what Little looks like, here are some short examples showing the basic syntax.

// Start with the classic.

puts("Hello, World!");

// Working with variables.

string where = "World";

puts("Hello, ${where}!");