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

Removed todo and created related issue. #256

Merged
merged 2 commits into from
Nov 21, 2019
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
9 changes: 0 additions & 9 deletions General/InterestingsToKnowForBeginners.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ The goal is to ease the use of Pharo for beginners.
- [Evaluatable objects (Blocks and Symbols)](#evaluatable-objects--blocks-and-symbols-)
- [Tools](#tools)
* [Calypso System Browser](#calypso)
* [Dependency Analyzer](#dependency-analyzer)
- [Flags](#flags)
- [Useful pragmas](#useful-pragmas)
* [Modify IDE](#modify-ide)
Expand All @@ -29,8 +28,6 @@ String concatenation can be costly because it will create a new string instance
String streamContents: [ :aStream | aStream << 'This is a '<< 'strong concatenation ' << 'that is ' << ' ' << ' efficient' ]
```

> TODO
## Evaluatable objects (Blocks and Symbols)
Pharo's Blocks and Symbols have an interesting property: they are polymorphic through `#value:` and `#cull:` methods.

Expand Down Expand Up @@ -66,8 +63,6 @@ The second way is shorter and often more readable.

## Tools

> TODO
### Calypso (System browser)

- Display the differences between two methods
Expand All @@ -82,10 +77,6 @@ The second way is shorter and often more readable.
* Click on all the methods you want to edit.
* Tabs are displayed with the source code of the methods selected.

### Dependency Analyzer

> TODO
## Flags

It is possible to "flag" methods in Pharo in order to be able to retrieve them later. This can be done by sending the `#flag:` message to self with a symbol as parameter which is the flag to be used.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The goals of the wiki are explained in the [Manifest](MANIFEST.md) and contribut

- [Setting up a new project](General/SettingUpANewProject.md) ![Unfinished](https://img.shields.io/badge/Progress-Unfinished-yellow.svg?style=flat)
- [Things beginners must learn](General/MustKnowForBeginners.md)
- [Interesting things to know for beginners](General/InterestingsToKnowForBeginners.md) ![Unfinished](https://img.shields.io/badge/Progress-Unfinished-yellow.svg?style=flat)
- [Interesting things to know for beginners](General/InterestingsToKnowForBeginners.md)
- [How to run Pharo from the command line](General/HowToRunPharoFromCommandLine.md) - How to run pharo from the command line.
- [Glossary](General/Glossary.md) ![Unfinished](https://img.shields.io/badge/Progress-Unfinished-yellow.svg?style=flat)

Expand Down