Boston Tigers

Boston Metros were an American soccer club based in Boston, Massachusetts that were a member of the American Soccer League. In their second season, the Metros joined the Eastern Professional Soccer Conference. After the EPSC folded at the end of its only season, the Metros returned to the ASL as the Boston Tigers.

Year-by-year

Year Division League Reg. Season Playoffs U.S. Open Cup
1963/64 N/A ASL 2nd No playoff Quarterfinals
1964/65 N/A EPSC 5th, North No playoff ?
1965/66 N/A ASL 6th No playoff ?
1966/67 2 ASL 3rd, North Did not qualify Did not enter
1967/68 2 ASL 2nd, First Playoffs Did not enter
gollark: Seems sensible.
gollark: This example code responds to ~ping with Pong!
gollark: ACTUAL feature suggestions?
gollark: It's glorious.
gollark: ```rust#[macro_use] extern crate serenity;use serenity::client::{Client, EventHandler};use serenity::framework::standard::StandardFramework;use std::env;struct Handler;impl EventHandler for Handler {}pub fn main() { // Login with a bot token from the environment let mut client = Client::new(&env::var("DISCORD_TOKEN").expect("token"), Handler) .expect("Error creating client"); client.with_framework(StandardFramework::new() .configure(|c| c.prefix("~")) .cmd("ping", ping)); if let Err(why) = client.start() { println!("An error occurred while running the client: {:?}", why); }}command!(ping(_context, message) { let _ = message.reply("Pong!");});```This is the example code, admittedly, yes.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.