用户:可靠的蓝甲虫sDuG查看:10 回复:6 评论:10 创建时间:2020-09-20T15:03:18
public class HelloWorld{
public stati void main (String[] args){
//在屏幕上显示文字
System.out.printin("Hello,World");
}
}
蒟蒻OIer1048576public class HelloWorld{
public static void main (String[] args){/**拼写错误2333,整体逻辑没有错误2333*/
//在屏幕上显示文字
System.out.printin("Hello,World");
}
}点赞1
评论
Unsignesdpublic class Helloworld {
public static void main(String [] args ) {
System.out.println("Helloworld");
}
}
点赞0
评论
尖端放电
// 当玩家进入游戏
world.onPlayerJoin(({ entity }) => {
// 如果玩家接触到了世界中的方块
entity.onVoxelContact(({ x, y, z }) => {
// 将方块变成空气
voxels.setVoxel(x, y, z, 0);
});
});
console.log('Welcome to Box 3!');
点赞0
评论