Hello,

I have this.

teamstats.team_name = msk
teamstats.played_games = 1
teamstats.points_made = 80
teamstats.points_against = 20

the map looks like this :
Code:
struct teamstats {
    string team_name;
    int played_games, point_made, points_against, woord;
};

 map<string, teamstats> allteams;
I know I have to use teamstat.insert but what arguments does this must have ?

Roelof