1
2
3
4
@@ -45,16 +55,55 @@ whitespace-nowrap overflow-x-auto overflow-y-hidden">Home
9
10
11
-
| <!doctype html>
+
| #include <iostream>
+
+class Animal {
+ string name;
+public:
+ void eat();
+}
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>Example HTML5 Document</title>
-</head>
-<body>
- <p>Test</p>
-</body>
-</html>
|