test1.data

来自「操作系统课内实验部分」· DATA 代码 · 共 16 行

DATA
16
字号
/* This is a very simple test for the file system program.  It writes some/* bytes to a file, closes it, reopens it, and reads what it has written.formatDisk 10 2// Create a file and write a string to itfile1 = createinum1 = inumber file1write file1 Hello,world! 12close file1file2 = open inum1read file2 100close file2vars/* shutdown

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?