- 26 Mar, 2025 4 commits
-
-
quinten-cabo authored
Make a suggestion for a basic hello world program if the programmer tries to compile an empty program.
69449924 -
quinten-cabo authored
Rephrased the error you get when you try to export or provide an undefined symbol from "Symbol '%s' used in export is not defined" into "Exported symbol '%s' is not defined anywhere." The programmer will get this error if they try to compile a program like this: ```sac module Bar; export {bar} provide {bar} ```
0da6c40d -
quinten-cabo authored
The part that is more specific is whether the undefined symbol is being exported or provided. This error: ```sac module Bar; export {barr} ``` Symbol 'barr' used in export or provide is not defined. Goes to this error: Symbol 'barr' used in export is not defined.
4073f64a -
quinten-cabo authored8ab4e3a8
-