This repository has been archived on 2024-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
justhomework/ex11/ex11.cpp

8 lines
123 B
C++
Raw Normal View History

2021-12-09 14:58:46 +00:00
#include "graph.hpp"
2021-12-09 15:04:48 +00:00
#include <stdio.h>
2021-12-09 14:58:46 +00:00
int main()
{
graphVertex<int,std::string> gv;
2021-12-09 15:04:48 +00:00
printf("OK");
2021-12-09 14:58:46 +00:00
return 0;
}