Skip to content

Commit c1cd5b9

Browse files
Added Area unit and unit tests.
1 parent 0d789c0 commit c1cd5b9

File tree

14 files changed

+1453
-0
lines changed

14 files changed

+1453
-0
lines changed

OnixLabs.Playground/Program.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,16 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
using System;
16+
using OnixLabs.Units;
17+
1518
namespace OnixLabs.Playground;
1619

1720
internal static class Program
1821
{
1922
private static void Main()
2023
{
24+
Area<double> area = Area<double>.FromSquareMeters(567);
25+
Console.WriteLine($"{area:sqin0}");
2126
}
2227
}

0 commit comments

Comments
 (0)