Add continue to the list of reserved words (#865)

This commit is contained in:
Chayim Refael Friedman
2020-12-04 05:50:56 +02:00
committed by GitHub
parent a294da7974
commit aac6296317

View File

@ -43,7 +43,7 @@ One way to get a quick feel for a language's style is to see what words it
reserves. Here's what Wren has:
<pre class="snippet">
as break class construct else false for foreign if import
as break class construct continue else false for foreign if import
in is null return static super this true var while
</pre>