Frage

I get an unexpected indent error when I try compiling this code:

class permanentItem extend Item 
    add: ->
        super()

    remove: ->
        super()

It is on the second line add: ->. I have tried commenting that and it still gives me the same error on remove: ->. Any ideas?

War es hilfreich?

Lösung

You have a typo in your code. It should be extends instead of extend:

class permanentItem extends Item 
    add: ->
        super()

    remove: ->
        super()
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top