xuduo1218
v1.4.0
Published
// 引入包 const { sayHello } = require('xuduo1218');
Readme
// 引入包 const { sayHello } = require('xuduo1218');
// 测试1:不带参数调用 const greeting1 = sayHello(); console.log(greeting1); // 输出: Привет, !
// 测试2:带参数调用 const greeting2 = sayHello('Студент'); console.log(greeting2); // 输出: Привет, Студент!
// 测试3:传入中文名字 const greeting3 = sayHello('小明'); console.log(greeting3); // 输出: Привет, 小明!
