mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-18 06:57:11 +01:00
8 lines
198 B
JavaScript
8 lines
198 B
JavaScript
import { greet } from './greet.js';
|
|
|
|
export function hello() {
|
|
greet();
|
|
console.log('Try JSON parse', JSON.parse(`{ "hello": 123 }`).hello);
|
|
console.log('Try RegExp', '123'.match(/[\d]+/));
|
|
}
|