Question: Is there a way to see the code of Units:-TestDimensions? It does not show option builtin when printing with verboseproc=2.

I read in the programming guide that to print the body of Maple library commands we set the Maple interface variable `verboseproc` to 2 then use the print command passing in the procedure we're interested in as argument.

Built-in kernel commands are compiled in machine code and not written in Maple language so we cannot view their definitions.

According to the guide, if we try to print such procedures we will see that the procedure has only an `option builtin` statement and no visible body.

If I try to view `Units:-TestDimensions`, as follows

```interface(verboseproc=1);
print(Units:-TestDimensions);

```

then what I see is

In this case there isn't the `option builtin` but neither is there a visible body.

Is this procedure built-in or is there a way to see the code?

Please Wait...