Add a real Pygments lexer for Wren (finally!).

This commit is contained in:
Bob Nystrom
2015-09-22 07:59:54 -07:00
parent 36f7d74183
commit 505b48fdac
34 changed files with 294 additions and 198 deletions

View File

@ -54,7 +54,7 @@ Here's an example of that kind of object-oriented programming in Lua:
Here's the same example in Wren:
:::dart
:::wren
class Account {
this new(balance) { _balance = balance }
withdraw(amount) { _balance = _balance - amount }