2006 Solomon Islands National Club Championship

The 2006 Solomon Islands National Club Championship was the 3rd season of the National Club Championship in the Solomon Islands. Marist FC won the league for the first time.[1] All matches were played at the hillside ground called Lawson Tama Stadium, with an approximate capacity of 20,000.

2006 National Club Championship
Season2006
ChampionsMarist FC
Matches played29
Goals scored124 (4.28 per match)
2004

Teams

  • Aimela FC
  • Central United FC
  • Koloale FC
  • Kuara FC
  • Mafi United
  • Marist FC
  • Mobile Cools
  • Ngaube FC
  • New Jersey FC
  • Tematangi FC
  • Uncles FC

Pools

Pool A

Pos Team Pld W D L GF GA GD Pts
1 Marist FC 5 5 0 0 14 4 +10 15
2 Uncles FC 5 3 1 1 24 7 +17 10
3 New Jersey FC 5 3 1 1 19 7 +12 10
4 Tematangi FC 5 1 1 3 1 12 -11 4
5 Kuara FC 5 1 0 4 2 15 -13 3
6 Mafi United 5 0 1 4 7 22 -15 1

Pool B

Pos Team Pld W D L GF GA GD Pts
1 Koloale FC 4 3 1 0 13 7 +6 10
2 Central United FC 4 2 2 0 7 4 +3 8
3 Aimela FC 4 2 0 2 15 9 +6 6
4 Ngaube FC 4 1 1 2 5 5 0 4
5 Mobile Cools 4 0 0 4 4 19 -15 0

Knockout stage

Semi-finals

Marist FC4-0Central United FC

Third place match

Central United FC2-2
(p.3-0)
Uncles FC

Final

Marist FC1-0Koloale
gollark: Oh, and it's not a special case as much as just annoying, but it's a compile error to not use a variable or import. Which I would find reasonable as a linter rule, but it makes quickly editing and testing bits of code more annoying.
gollark: As well as having special casing for stuff, it often is just pointlessly hostile to abstracting anything:- lol no generics- you literally cannot define a well-typed `min`/`max` function (like Lua has). Unless you do something weird like... implement an interface for that on all the builtin number types, and I don't know if it would let you do that.- no map/filter/reduce stuff- `if err != nil { return err }`- the recommended way to map over an array in parallel, if I remember right, is to run a goroutine for every element which does whatever task you want then adds the result to a shared "output" array, and use a WaitGroup thingy to wait for all the goroutines. This is a lot of boilerplate.
gollark: It also does have the whole "anything which implements the right functions implements an interface" thing, which seems very horrible to me as a random change somewhere could cause compile errors with no good explanation.
gollark: - `make`/`new` are basically magic- `range` is magic too - what it does depends on the number of return values you use, or something. Also, IIRC user-defined types can't implement it- Generics are available for all of, what, three builtin types? Maps, slices and channels, if I remember right.- `select` also only works with the built-in channels- Constants: they can only be something like four types, and what even is `iota` doing- The multiple return values can't be used as tuples or anything. You can, as far as I'm aware, only return two (or, well, more than one) things at once, or bind two returns to two variables, nothing else.- no operator overloading- it *kind of* has exceptions (panic/recover), presumably because they realized not having any would be very annoying, but they're not very usable- whether reading from a channel is blocking also depends how many return values you use because of course
gollark: What, you mean no it doesn't have weird special cases everywhere?

References

  1. "Solomon Islands 2006/07". www.rsssf.com. Archived from the original on 2016-03-03. Retrieved 2016-03-01.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.