1
0
mirror of https://github.com/2martens/uni.git synced 2026-05-06 11:26:25 +02:00

[CCV] Created subdirectories

Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
2017-04-04 15:37:25 +02:00
parent e26a936bc1
commit ca157ad091
9 changed files with 41 additions and 6 deletions

View File

@ -0,0 +1,11 @@
//
// Created by jim on 4/4/17.
//
#include "Rectangle.h"
int main()
{
Rectangle* rec = new Rectangle(20, 10);
rec->area();
return 0;
}