Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs #246

Merged
merged 3 commits into from
May 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/LEARNING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ For that reason, learning
[the basic syntax of Tcl](https://tcl.tk/man/tcl8.6/TclCmd/Tcl.htm)
is quite easy.

For a hands-on tutorial, there is:
- https://learnxinyminutes.com/docs/tcl/
For a hands-on tutorial:
- [Learn X in Y minutes: Tcl](https://learnxinyminutes.com/docs/tcl/)

For a comprehensive tutorial in more parts, there is:
- https://www.tcl.tk/man/tcl8.5/tutorial/tcltutorial.html
For a comprehensive tutorial in more parts:
- [the Tcl tutorial](https://www.tcl.tk/man/tcl8.5/tutorial/tcltutorial.html)
8 changes: 7 additions & 1 deletion notes-on-unimplemented-exercises.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,30 @@

## Merely unimplemented

* [killer-sudoku-helper][killer-sudoku-helper]
* [ledger][ledger]
- a tedious-to-create refactoring exercise
* [lens-person][lens-person]
- Tcl does not have immutable data
- but this exercise could be about ways to access deeply nested dictionaries
* [paasio][paasio]
- probably need to use the [`transchan`][transchan] command
- [this stackoverflow question][tcl-tee] may provide a starting point
* [sgf-parsing][sgf-parsing]
* [state-of-tic-tac-toe][state-of-tic-tac-toe]
* [tree-building][tree-building]
- a tedious-to-create refactoring exercise


[unimplemented]: https://tracks.exercism.io/tcl/main/unimplemented
[lens-person]: https://github.com/exercism/problem-specifications/tree/master/exercises/lens-person
[micro-blog]: https://github.com/exercism/problem-specifications/tree/master/exercises/micro-blog
[tcl-unicode]: https://wiki.tcl-lang.org/page/Unicode+and+UTF-tree-building
[tcl-unicode]: https://wiki.tcl-lang.org/page/Unicode+and+UTF-8
[ledger]: https://github.com/exercism/problem-specifications/tree/master/exercises/ledger
[paasio]: https://github.com/exercism/problem-specifications/tree/master/exercises/paasio
[tcl-tee]: https://stackoverflow.com/q/72352064/7552
[sgf-parsing]: https://github.com/exercism/problem-specifications/tree/master/exercises/sgf-parsing
[tree-building]: https://github.com/exercism/problem-specifications/tree/master/exercises/tree-building
[killer-sudoku-helper]: https://github.com/exercism/problem-specifications/tree/master/exercises/killer-sudoku-helper
[state-of-tic-tac-toe]: https://github.com/exercism/problem-specifications/tree/master/exercises/state-of-tic-tac-toe
Comment on lines 29 to +38
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For later: consider changing all these master to main to avoid the redirect.

[transchan]: https://www.tcl-lang.org/man/tcl8.6/TclCmd/transchan.htm