This repository has been archived on 2025-03-13. You can view files and clone it, but cannot push or open issues or pull requests.
jsdotnet/main.js

17 lines
350 B
JavaScript
Raw Permalink Normal View History

2024-12-29 19:25:43 +01:00
import { System } from './src/System/export.js';
const span1 = new System.TimeSpan(1, 30, 15, 500);
console.log(span1.toString());
const span2 = System.TimeSpan.fromMinutes(90);
console.log(span2.toString());
////
const span = new System.TimeSpan(1, 30, 0);
console.log(span.toString());
const sum = System.Math.add(10, 5);
console.log(sum);