📄 help.misc
字号:
misc concatconcat (s, t) Returns the concatenation of s and t, both of which must be strings.misc evaleval (s) Not yet implemented.misc exitexit ( )exit (n) Exits the interpreter with exit code n. If n is omitted then zero is used.misc helphelp ( )help (s) Requests help on an operation, function, or other topic. If s is omitted then a listing of valid topics is printed. The argument s should be either a string or a function name.misc historyhistory ( )history (n) Prints the command history list. If n is given then only the last n commands are printed.misc includeinclude (s) Includes the file named by s. The file is included in the global scope. The environment variable BURLAP_PATH is used to search for the file named by s.misc loadload (s) Not yet implemented.misc readread ( ) Reads a line from standard input and returns it as a string. A null value is returned upon end of file.misc readsreads ( ) Reads a string from standard input and returns it. A null value is returned upon end of file.misc savesave (s) Not yet implemented.misc systemsystem (s) Executes the UNIX command named by s. The command is executed in its own subshell. The return status of the command is returned.misc typetype (A) Returns a string describing the type of A, which may be of any type.misc writewrite (...) Writes its arguments followed by a newline to standard output. No spaces are automatically written between the arguments, although each matrix is written on its own line.misc writeswrites (...) Writes its arguments to standard output. No spaces are automatically written between the arguments, although each matrix is written on its own line.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -