📄 prec.right
字号:
`Say' echos its argument. Its return value is of no interest.`Truth' echos its argument and returns a TRUE result.`False' echos its argument and returns a FALSE result. Truth 1 && Truth 2 || Say 3 output=12( Truth 1 && Truth 2 ) || Say 3 output=12 Truth 1 && False 2 || Say 3 output=123( Truth 1 && False 2 ) || Say 3 output=123 False 1 && Truth 2 || Say 3 output=13( False 1 && Truth 2 ) || Say 3 output=13 False 1 && False 2 || Say 3 output=13( False 1 && False 2 ) || Say 3 output=13Truth 1 || Truth 2 && Say 3 output=13Truth 1 || ( Truth 2 && Say 3 ) output=1Truth 1 || False 2 && Say 3 output=13Truth 1 || ( False 2 && Say 3 ) output=1False 1 || Truth 2 && Say 3 output=123False 1 || ( Truth 2 && Say 3 ) output=123False 1 || False 2 && Say 3 output=12False 1 || ( False 2 && Say 3 ) output=12
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -