Indiana High School Football Conference
The Indiana High School Football Conference was an Indiana High School Athletic Association (IHSAA)-sanctioned conference founded in 1926 by 10 members.The Founding Members were:
- Elwood
- Evansville Central
- Fort Wayne South
- Gary Emerson
- Indianapolis Tech
- Mishawaka
- Muncie
- Richmond Morton
- South Bend Central
- Terre Haute Gerstmeyer
7 teams withdrew Fort Wayne South (1926); Terre Haute Gerstmeyer (1926); Mishawaka (1927); Richmond (1927); Gary Emerson (1928); South Bend Central (1928); New Castle (1930).
Added (12): Linton-Stockton (1926); Marion (1926); Clinton (1928); Logansport (1928); Bicknell (1929); Kokomo (1929); Bloomington (1930); Brazil (1930); New Castle (1930); Wabash (1930); Sullivan (1931); Vincennes Lincoln (1931).
The conference ended in 1931 and the final members were (15):
- Bicknell
- Bloomington
- Brazil
- Clinton
- Elwood
- Evansville Central
- Indianapolis Tech
- Kokomo
- Linton-Stockton
- Logansport
- Marion
- Muncie Central
- Sullivan
- Vincennes Lincoln
- Wabash.[1]
Champions
- 1926 Gary Emerson (3-0) & Mishawaka (3-0)
- 1927 Linton-Stockton (4-1) & Muncie (4-1-1)
- 1928 Clinton (4-0)
- 1929 Clinton
- 1930 Logansport (4-0)
- 1931 Clinton (3-0) & Marion (5-0)
Resources
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?
gollark: It pretends to be "simple", but it isn't because there are bizarre special cases everywhere to make stuff appear to work.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.