📄 inet02.mal
字号:
# these tests are from the PostgreSQL documentation examplesi1 := inet.new("192.168.1.5");io.print(i1);i2 := inet.new("192.168.1.6");io.print(i2);i3 := inet.new("192.168.1/24");io.print(i3);i4 := inet.new("192.168.1.4");io.print(i4);e := inet.<(i1, i2);io.print(e);e := inet.<=(i1, i1);io.print(e);e := inet.=(i1, i1);io.print(e);e := inet.>=(i1, i1);io.print(e);e := inet.>(i1, i4);io.print(e);e := inet.!=(i1, i4);io.print(e);e := inet.<<(i1, i3);io.print(e);e := inet.<<=(i3, i3);io.print(e);e := inet.>>(i3, i1);io.print(e);e := inet.>>=(i3, i3);io.print(e);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -