mirror of
https://github.com/2martens/uni.git
synced 2026-05-06 19:36:26 +02:00
12 lines
137 B
C++
12 lines
137 B
C++
//
|
|
// Created by jim on 4/4/17.
|
|
//
|
|
#include "Rectangle.h"
|
|
|
|
int main()
|
|
{
|
|
Rectangle rec = Rectangle(20, 10);
|
|
rec.area();
|
|
return 0;
|
|
}
|