Ninth class

Report a typo

Imagine that you are at school again. It might not be the most pleasant experience, but don't worry, it's an IT lesson.

Your task is to fix the iota constant block declaration of school classes. Make the auto-increment start from 1 instead of 0, and add the Ninth class at the end.

Write a program in Go
package main

import "fmt"

const (
First = iota ? ? // Make iota start counting from 1 instead of 0 here!
Second
Third
Fourth
Fifth
Sixth
Seventh // 7
Eighth // something is missing after the Eighth class...
?
)

// DO NOT delete or modify the contents of the main function!
func main() {
fmt.Println(check())
}
___

Create a free account to access the full topic