diff --git a/main.cpp b/main.cpp index 1b999d6..3061c2b 100644 --- a/main.cpp +++ b/main.cpp @@ -2,9 +2,17 @@ #include using namespace std; - +class Demo +{ + public: + void fun() + { + cout<<"Class has been implemented"; + } +}; int main() { - + Demo o; + o.fun; }