My attempts at exercism.org
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 13 lines 203 B view raw
1<?php 2 3class Size 4{ 5 public int $height; 6 public int $width; 7 8 public function __construct(int $height, int $width) 9 { 10 $this->height = $height; 11 $this->width = $width; 12 } 13}