help.misc

来自「C 开发的有限元软件」· MISC 代码 · 共 101 行

MISC
101
字号
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 + =
减小字号Ctrl + -
显示快捷键?