Clone of Dr. Maiti's CS5970 repo
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
162 B

package main
import "fmt"
func main() {
fmt.Println("hello world")
sum := 0
for i := 0; i < 15; i++ {
fmt.Println(sum)
sum += i
}
fmt.Println(sum)
}