mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
Tweaked README
This commit is contained in:
10
README.md
10
README.md
@@ -77,19 +77,21 @@ print tally(); //3
|
||||
|
||||
# Timetable
|
||||
|
||||
Here's a rough goal for the upcoming milestones, at which time I'll review and revise my projections.
|
||||
Here's a flexible outline for the upcoming feature milestones. On each review date, I'll adjust my projections as needed.
|
||||
|
||||
| Feature | Time Span | Review Date |
|
||||
| --- | :---: | :---: |
|
||||
| [Arrays & Tables](https://github.com/Ratstail91/Toy/issues/155) | - | 1st Jan ✅ |
|
||||
| [Control Flow](https://github.com/Ratstail91/Toy/issues/152) | 2 weeks | 15th Jan ✅ |
|
||||
| [Functions](https://github.com/Ratstail91/Toy/issues/163) | 2 weeks | ~~29th Jan~~ |
|
||||
| Functions* | ~~2 weeks~~ | ~~29th Jan~~ |
|
||||
| [Functions](https://github.com/Ratstail91/Toy/issues/163) | 2 weeks | 12th Feb |
|
||||
| [Dot Operator & Slices](https://github.com/Ratstail91/Toy/issues/156) | 2 weeks | 26th Feb |
|
||||
| [Standard Libraries](https://github.com/Ratstail91/Toy/issues/164) | 2 weeks | 12th Mar |
|
||||
| [Native Libraries](https://github.com/Ratstail91/Toy/issues/165) | 2 weeks | 26th Mar |
|
||||
| [Native Libraries](https://github.com/Ratstail91/Toy/issues/165) | 2 weeks | 12th Mar |
|
||||
| [Standard Libraries](https://github.com/Ratstail91/Toy/issues/164) | 2 weeks | 26th Mar |
|
||||
| [Documentation](https://github.com/Ratstail91/Toy/issues/169) | - | - |
|
||||
|
||||
*Info about and strategies for missed milestones can be found on [my blog here](https://krgamestudios.com/posts/2025-01-29-missed-by-a-mile).
|
||||
|
||||
# Building
|
||||
|
||||
Supported platforms are: `linux-latest`, `windows-latest`, `macos-latest`, using [GitHub's standard runners](https://docs.github.com/en/actions/using-github-hosted-runners/using-github-hosted-runners/about-github-hosted-runners#standard-github-hosted-runners-for-public-repositories).
|
||||
|
||||
@@ -1,9 +1,18 @@
|
||||
|
||||
|
||||
fn name(param1, param2) {
|
||||
fn name(param1, param2, param3, param4) {
|
||||
//return 42;
|
||||
}
|
||||
|
||||
//params (group -> aggregate):
|
||||
// left: varAccess (name string "param1")
|
||||
// right (aggregate):
|
||||
// left: varAccess (name string "param2")
|
||||
// right (aggregate):
|
||||
// //continues
|
||||
|
||||
|
||||
|
||||
/*
|
||||
fn name(param1: int, param2: float) {
|
||||
return 42;
|
||||
|
||||
Reference in New Issue
Block a user