docs: add classes documentation content, usage page stub, and fix page title in template

Add full introductory content to the classes documentation page covering class definition, inheritance, and the Object superclass. Create a new usage documentation page with a TODO placeholder. Update the HTML page title format from "wren {title}" to "Wren - {title}" and add a navigation link to the new usage page.
This commit is contained in:
Bob Nystrom
2013-11-23 22:52:50 +00:00
parent 65615f4aa8
commit f4982f7b21
4 changed files with 32 additions and 3 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ Variables can be declared using `var`:
## Method calls
Wren is a deeply object-oriented language, so most code consists of method calls. They look pretty familiar:
Wren is object-oriented, so most code consists of method calls. They look like this:
:::wren
io.write("hello")