diff --git a/stdlib/_jou_startup.jou b/stdlib/_jou_startup.jou index 52634bfc..c2b58498 100644 --- a/stdlib/_jou_startup.jou +++ b/stdlib/_jou_startup.jou @@ -1,5 +1,5 @@ -# A call to the _jou_windows_startup() function is inserted to the -# start of every Jou program when compiling for Windows. +# On many platforms, a call to the _jou_startup() function is inserted to +# the start of main() in every Jou program. # # On Windows, the C "global variables" stdin, stdout and stderr are # actually macros: diff --git a/tests/should_succeed/compiler_cli.jou b/tests/should_succeed/compiler_cli.jou index 082a2678..24ab52e7 100644 --- a/tests/should_succeed/compiler_cli.jou +++ b/tests/should_succeed/compiler_cli.jou @@ -48,7 +48,7 @@ def main() -> int: # Test that double-verbose kinda works, without asserting the output in too much detail. # See README for an explanation of why CFG is twice. - # TODO: shouldn't need to hide special stdlib/_... files, ideally it would be precompiled + # TODO: shouldn't need to hide special stdlib/_... files, ideally they would be precompiled run_jou("-vv examples/hello.jou | grep === | grep -v stdlib/io.jou | grep -v stdlib/_") # Output: ===== Tokens for file "examples/hello.jou" ===== # Output: ===== AST for file "examples/hello.jou" =====