mirror of
https://github.com/brmlab/brmlife.git
synced 2025-08-02 09:53:38 +02:00
12 lines
148 B
C++
12 lines
148 B
C++
#include <iostream>
|
|
|
|
#include "agent.h"
|
|
#include "map.h"
|
|
|
|
int
|
|
main(int argc, char *argv[])
|
|
{
|
|
class map map(10, 10);
|
|
map.print_map();
|
|
return 0;
|
|
}
|