Hello,
Just thinking how to solve the bowling challenge from exercism.
but I wonder if I can do something like this in the method that checks
if I have the right object
I was thinking about this :
Result
-- Strike
-- Spare
-- allOther
then In Strike something like this
checkForBonus: numb
Hello,
I just learned double dispatch.
And now for the Robot challenge of exercism Tim has pointed me to this
article(https://blog.metaobject.com/2019/04/accessors-have-message-obsession.html)
but I fail to see how the move method looks like in that article.
I had a conversation with Tim in
On 06/04/19 4:49 PM, Roelof Wobben wrote:
Hello,
I just learned double dispatch.
And now for the Robot challenge of exercism Tim has pointed me to this
article(https://blog.metaobject.com/2019/04/accessors-have-message-obsession.html)
but I fail to see how the move method looks like in that
Hi everyone,
Is it possible to read and modify files not containing Pharo code in a
repository managed by Iceberg? I am thinking of reading the repository's
README file, for example, or storing data files read by my code
alongside the code itself.
Konrad.
oke,
so I need a single Object here
that contains this in a initialize function :
north = Direction( 0, -1)
east = Direction( 1, 0)
south = Direction( 0, 1)
west = Direction(-1, 0)
oke, then time to figure out how to change my functions because
Hi Konrad,
On Sat, 6 Apr 2019 at 15:46, Konrad Hinsen
wrote:
> Hi everyone,
>
> Is it possible to read and modify files not containing Pharo code in a
> repository managed by Iceberg? I am thinking of reading the repository's
> README file, for example, or storing data files read by my code
> al
My understanding is that at the moment commits are restricted to what’s I the
designated src directory, so you need to use an external way to commit non code
files into your branch. These can be
1. Git cmd line
2. Another tool like IntelliJ
3. The github web bowser
If you do, you need to pull o