about summary refs log tree commit diff
path: root/doc/tutorial/syntax.md
AgeCommit message (Collapse)AuthorLines
2011-11-22Add hacks to extract and compile tutorial codeMarijn Haverbeke-7/+8
Not included in the build by default, since it's fragile and kludgy. Do something like this to run it: cd doc/tutorial RUSTC=../../build/stage2/bin/rustc bash test.sh Closes #1143
2011-11-22Clarify escaped newlines in tutorialMarijn Haverbeke-1/+6
Closes #1117
2011-11-16tutorial: Close unmatched quote in anchor tagBrian Anderson-1/+1
2011-11-07Fix some more bugs in the tutorialMarijn Haverbeke-2/+2
Tutorial code going out of date is going to be a recurring problem...
2011-11-07Tutorial: 'import std;' should be 'use std;'.Matt Brubeck-1/+1
2011-11-04Fill in the tutorial section on testingMarijn Haverbeke-8/+16
2011-11-03Clarify metadata syntax in manualMarijn Haverbeke-1/+6
Closes #1119
2011-11-02Fix confusing sentence in tutorial.Marijn Haverbeke-5/+6
2011-11-02Expand the tutorial section on functionsMarijn Haverbeke-16/+16
2011-11-02Write briefly about syntax extension in the syntax sectionMarijn Haverbeke-2/+23
The currently existing syntax extension facilities don't really merit their own section.
2011-11-01Fix some typos in tutorialMarijn Haverbeke-1/+1
2011-11-01Fix typo in syntax.mdBrian Anderson-1/+1
2011-11-01Fill in the foreign-function part of the tutorialMarijn Haverbeke-0/+2
2011-11-01Tie up some ends in the tutorialMarijn Haverbeke-1/+25
2011-11-01Flesh out the module section of the tutorialMarijn Haverbeke-0/+25
2011-11-01Add syntax highlighting to the code snippets in the tutorialMarijn Haverbeke-6/+50
Using the CodeMirror Rust mode.
2011-11-01Clarify tutorial based on feedback, fix some Markdown errorsMarijn Haverbeke-8/+15
2011-10-31Add a first stab at a tutorialMarijn Haverbeke-0/+207
You build it with `cd doc/tutorial; node build.js`, and then point your browser at doc/tutorial/web/index.html. Not remotely ready for publicity yet.