Tweaked README

This commit is contained in:
2025-02-06 11:19:36 +11:00
parent b93ea5006c
commit 212eca1825
2 changed files with 16 additions and 5 deletions

View File

@@ -77,19 +77,21 @@ print tally(); //3
# Timetable # 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 | | Feature | Time Span | Review Date |
| --- | :---: | :---: | | --- | :---: | :---: |
| [Arrays & Tables](https://github.com/Ratstail91/Toy/issues/155) | - | 1st Jan ✅ | | [Arrays & Tables](https://github.com/Ratstail91/Toy/issues/155) | - | 1st Jan ✅ |
| [Control Flow](https://github.com/Ratstail91/Toy/issues/152) | 2 weeks | 15th 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 | | [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 | | [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 | 12th Mar |
| [Native Libraries](https://github.com/Ratstail91/Toy/issues/165) | 2 weeks | 26th Mar | | [Standard Libraries](https://github.com/Ratstail91/Toy/issues/164) | 2 weeks | 26th Mar |
| [Documentation](https://github.com/Ratstail91/Toy/issues/169) | - | - | | [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 # 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). 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).

View File

@@ -1,9 +1,18 @@
fn name(param1, param2) { fn name(param1, param2, param3, param4) {
//return 42; //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) { fn name(param1: int, param2: float) {
return 42; return 42;