mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
8 lines
167 B
JavaScript
8 lines
167 B
JavaScript
import { area, circumference } from './circle.js';
|
|
|
|
const r = 3;
|
|
|
|
console.log(`Circle with radius ${r} has
|
|
area: ${area(r)};
|
|
circunference: ${circumference(r)}`);
|