Scénario de test & Cas d'usage
No external data needed; internal variable testing.
| 1 | /* No |
| 2 | Data Step required for this variable inspection test */ |
| 1 | |
| 2 | PROC CAS; |
| 3 | |
| 4 | mixedList = {10, "StringValue", ., {nested=1}, .M}; |
| 5 | |
| 6 | |
| 7 | RUN; |
| 8 |
| 1 | PROC CAS; |
| 2 | mixedList = {10, "StringValue", ., {nested=1}, .M}; |
| 3 | BUILTINS.echo / debug_data=mixedList; |
| 4 | RUN; |
The log displays the list structure, clearly distinguishing between standard missing numeric values (.) and special missing values (.M), proving that the parameter parsing logic preserves these nuances.