From 212eca1825c5cc738fbc4c5cb83f78a5ea1b1535 Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Thu, 6 Feb 2025 11:19:36 +1100 Subject: [PATCH] Tweaked README --- README.md | 10 ++++++---- scripts/funky.toy | 11 ++++++++++- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3f0ead0..4198bbc 100644 --- a/README.md +++ b/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). diff --git a/scripts/funky.toy b/scripts/funky.toy index ced83e1..1891fd7 100644 --- a/scripts/funky.toy +++ b/scripts/funky.toy @@ -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;