ootest.sc

来自「perl learn perl by examples」· SC 代码 · 共 15 行

SC
15
字号
// This is a sample schema file
// Process this file by "jeeves -T Test.template Test.sc

// File: emp.om
class Employee { 
    int         id;
    string      name;
    int         dept_id;
};

class Department { 
    int    id;
    string name;
};

⌨️ 快捷键说明

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