0a060a9678
WrenValue -> WrenHandle.
2016-05-20 20:55:28 -07:00
5d98d20175
Add Stdin.isRaw.
2016-05-20 15:19:18 -07:00
500dd41ccd
Add Stdin.readByte().
2016-05-20 11:50:14 -07:00
872cfdcd42
Mention the subreddit on the community docs.
...
Fix #360 .
2016-05-20 10:02:57 -07:00
1d252d1970
First draft of docs for calling Wren from C.
2016-05-19 16:01:54 -07:00
d64af5d6a5
Fix output formatting in Firefox.
2016-05-19 09:30:38 -07:00
befe90501b
Start writing comprensive embedding docs.
...
- Break embedding out into a separate section with multiple pages.
- Document the constraints on the API.
- Document the slot array and WrenValue.
Still lots more to do, but getting there...
2016-05-16 08:09:14 -07:00
23b5dc25de
Fix typo
2016-05-04 13:17:20 -04:00
d4662ebdfc
Fix typo
2016-05-03 14:43:59 -04:00
94eb22cd9d
Merge pull request #348 from crimsun/patch-1
...
Clarified grammatical inversion
2016-05-02 21:54:42 -07:00
020b1b7661
Merge branch 'master' of https://github.com/munificent/wren
2016-05-02 16:23:56 -07:00
1f37068b39
Oops, correct year that C++ was standardized.
2016-05-02 16:23:08 -07:00
2132f15f9e
Clarified grammatical inversion
2016-05-02 02:39:11 +04:30
95da4f90b9
Fix small typo in method call documentation
2016-04-15 15:16:24 +10:00
fb0e01bfe9
Fix some nits in the FAQ.
2016-03-07 07:41:00 -08:00
1e4b9e5175
File.realPath().
...
Not tested yet, because we can't create symlinks from Wren and I don't
want to check symlinks into the repo, but it seems to do the right
thing.
2016-02-27 15:53:02 -08:00
e6b48de598
Fix precedence table in docs.
...
It was out of sync with the actual implemented precedence in a few
places.
2016-02-27 10:14:09 -08:00
919605b7ba
Couple of tiny tweaks.
2016-02-24 06:52:12 -08:00
2c4e497c54
Fix a couple of doc bugs.
2016-02-22 07:48:53 -08:00
60162575ee
More file system checking functions:
...
- Stat#isFile
- Stat#isDirectory
- Directory.exists()
- File.exists()
2016-02-21 12:23:33 -08:00
8e90e3577b
More file IO!
...
Can now create, delete, and write to files.
2016-02-20 09:23:42 -08:00
ff69b12c2c
Fix sample in doc/site/error-handling
...
Add missing constructor.
2016-02-11 18:06:51 -05:00
a2e03279e2
Fix abs code sample in doc/site/modules/core/num
...
-123.abs returns -123 because the dot has higher precedence so it's
really -(123.abs).
2016-02-11 17:58:09 -05:00
68ab4e88c0
Merge branch 'master' of https://github.com/munificent/wren
2016-02-09 07:24:55 -08:00
8b36e2f00b
Add sample(_) and sample(_,_) to Random.
2016-02-09 07:24:45 -08:00
82307232cc
Update wrenInterpret doc/site/embedding-api
2016-02-08 08:34:56 -05:00
d4a4b26203
Add Random.shuffle().
2016-02-07 10:38:39 -08:00
79558d95e5
Move File.stat() -> Stat.path().
...
Thanks, Michel!
2016-02-07 09:56:16 -08:00
ffb5ada9fb
Move the community docs to the wiki.
2016-01-24 15:39:35 -08:00
71e2458a6c
Add API for accessing command-line arguments.
...
- Add process module with Process class.
- Add "arguments" and "allArguments" methods.
- Docs for same.
- Support passing additional arguments to command line.
- Add "--help" support to command line.
2016-01-22 07:57:26 -08:00
056ae61493
Tweak some docs.
2016-01-21 21:38:27 -08:00
94208647ab
Test File.stat() on a directory.
2016-01-01 10:05:31 -08:00
5cd8a06fa0
File.stat().
2016-01-01 09:58:44 -08:00
b054526df8
Add an optional offset to File.readBytes().
2015-12-30 08:13:19 -08:00
6e2ec92e0d
Fix parameter format in docs.
2015-12-29 22:35:14 -08:00
452cc88082
Fix a few typos in the docs.
2015-12-29 22:29:13 -08:00
8854dfb07e
Docs for the io module!
2015-12-29 21:56:44 -08:00
5454152dff
Merge pull request #313 from acook/patch-1
...
Fixing a couple of typos in the classes docs.
2015-11-25 08:59:16 -08:00
fb72e0fff7
Document method scope.
2015-11-21 14:00:21 -08:00
03163a760f
Document interpolation.
2015-11-21 09:20:50 -08:00
da3eac9a48
Fixing a couple of typos in the classes docs.
2015-11-20 12:56:27 -06:00
de7b062a03
Tweak module docs a bit.
2015-11-09 07:42:48 -08:00
902289d7dd
Document the "random" module.
2015-11-09 07:37:06 -08:00
82706b74fc
Reorganize site to make room for documenting the other built-in modules.
2015-11-08 13:31:22 -08:00
8c0dae1320
Move precedence table to syntax page.
2015-11-08 10:59:23 -08:00
0bf5dc42ef
Remove outdated docs.
2015-11-07 13:00:49 -08:00
7ae9888c4f
It turns out "is" is just a normal overridable operator. Who knew?
2015-11-07 13:00:24 -08:00
931d9ca4d3
Reorganize the language guide.
...
- Rename "Expressions" -> "Method Calls".
- Organize "Types" and "Language" into a single linear narrative.
- Mobile-specific navigation to handle the longer guide.
- Rename "Fibers" -> "Concurrency".
- Get rid of duplicate stuff about signatures in "Classes".
- Add next/prev links to each page in the guide.
- Move "Contributing" and "Community" up to the top level.
- Move the precendence table to a separate "Grammar" page.
- Lots of other little stuff.
2015-11-07 11:09:04 -08:00
720c03cf49
Add System.gc().
2015-10-24 10:56:27 -07:00
545a4cbf7e
Style example output and errors in the docs.
2015-10-18 15:56:52 -07:00