Giter VIP home page Giter VIP logo

gopherlings's Issues

gopherlings watch stops after 30 exercises

Background

After finishing "030-pointermethod2" the gopherlings watch window prints a congratulatory message - even though there are (currently) 32 problems in the set.

Proposed change

Do something else :D

Sorry, I don't have insight into the gopherlings watch program, I don't know if this is as simple as changing "30" to "32" or if this is a colossal change request.

"I am still going" missing in exercise 20 sliceref

Background

I finished exercise 19 and the gopherlings watch window gave me an error message that did not at all resemble exercise 20 (because it skipped directly to exercise 21)

Proposed change

Add

// I AM STILL GOING

to exercise 20

EDIT: Also separately - thank you for maintaining this repo. Despite what my issues might indicate, I am very happy to have this training resource.

gopherlings: command not found

I'm trying to run this similar to rustlings (rustlings watch). I followed the instructions in the readme and no matter what I do, i can not get the gopherlings command to work. Does anyone have any suggestions? Thank you.

Suggested correction to explanatory text for exercise 14

The current text is technically false. As of today, it is written:

// Problem:
// For statements can also have init and post statements in the clause.
//
//  for i := 0; i <= 10; i = i + 1 {
//      fmt.Println(i)
//  }
//
// The above for loop will iterate from 0 to 10 and is
// identical in functionality to the following
// single-condition for statement:
//
//  i := 0
//  for i <= 10 {
//      fmt.Println(i)
//      i = i + 1
//  }

which would leave i in scope after the loop block, which is true in some languages but not here.

Proposed change

The exercise text could instead be

// Problem:
// For statements can also have init and post statements in the clause.
//
//  for i := 0; i <= 10; i = i + 1 {
//      fmt.Println(i)
//  }
//
// The above for loop will iterate from 0 to 10 and is
// identical in functionality to the following
// single-condition for statement:
//
// {
//      i := 0
//      for i <= 10 {
//          fmt.Println(i)
//          i = i + 1
// }

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.