UNPKG

@d3x0r/sack-gui

Version:

SACK abstraction library exposed to JS to provide low level system services.

8 lines (4 loc) 242 B
import {Fraction} from "./fractions.mjs" console.log( "1/3 = ", new Fraction(1,3).toString() ); console.log( "3/2 = ", new Fraction(3,2).toString() ); console.log( "3/2+9/16 = ", new Fraction(3,2).add( new Fraction( 9,16 ) ).toString() );