creative-scala icon indicating copy to clipboard operation
creative-scala copied to clipboard

Quick, graphical, fun introduction to programming in Scala.

Results 40 creative-scala issues
Sort by recently updated
recently updated
newest added

I have mixed feelings (leaning towards negative) about the extensive use of infix notation in the book for code like: circle(10) beside square(20) beside square(30) my impression is that the...

In the PDF on page 105 in Chapter 9.8 the following code snipped is supposed to generate the stars shown in Fig. 9.12: ``` val star = Image .star(100, 50,...

The following TODO was left at two places in the text (page 134 in the PDF): > This generates the anima on shown in TODO: render animation Could a temporary...

Hi, I was working through the material myself to prepare for teaching it, and I found a lot of little mistakes. I got until chapter 9, here's everything I found....

We use the term `syntax` in Creative Scala but do not define it. We should, given it is a fairly technical term.

Hi there! I'm trying to teach my sister Scala with this book and I've realized that the epub book version doesn't render images. I attach a screenshot of page 67,...

There's a box at the start of chapter 3 saying: > If you run the examples from the SBT console within Doodle they will just work. If not, you will...

Figure22 is not stacked boxes now. It is same as figure 21.

This is a good textbook, thank you. I modified codes in Exercise: Stacking Boxes. I think I have to modify figure22, but I can't do it. (Because figure22 is not...

https://github.com/underscoreio/creative-scala/blob/develop/src/pages/programs/names.md#exercises-- ## original ```scala object One { val a = b - 1 val b = a + 1 val answer = a + b } ``` > Trick question!...