-
When I use this to write a local application, running the exe file opens a black window screen. |
Beta Was this translation helpful? Give feedback.
Answered by
13r0ck
Dec 14, 2022
Replies: 1 comment 1 reply
-
That's called the windows command prompt. It's really useful for debugging software. If your code has a print statement in it, you will see it there. It can be disabled by adding |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
mhanhmk
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That's called the windows command prompt. It's really useful for debugging software. If your code has a print statement in it, you will see it there.
It can be disabled by adding
#![windows_subsystem = "windows"]
to your code like this, but you probably want it there while you develop your application.