📄 box.pm
字号:
#!/usr/bin/perl -w
#****c* Cargo/Box
# FUNCTION
# A box that can be packed into truck.
# Several other classes are derived from Box.
# Box
# |
# +---- SquareBox
# |
# +---- RectangularBox
#******
package Box;
sub new {
my $class = shift;
my $self = { };
bless ($self, $class);
return $self;
}
1;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -