#Console.WriteLine()
15 messages · Page 1 of 1 (latest)
do you have an example of something you're trying to do?
it looks like the program doesn't compile, so if it's not compiling, it won't run, and if it doesn't run, it won't ever execute the code that writes to the console
can you suggest me how to do it. Do I have to create a console App for that??
from what you showed me, the program doesn't compile because there are two errors
there is an error on line 17 and an error on line 24
i trying with HelloWorld ex. I Passed test but I don't see what I want to print
where "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" print ??
To make code easier for everyone to read (and to make you look like a pro), **please use a codeblock when sharing code.**For example, you can type the following:
```
for number in range(10):
total += number;
```
Discord will render that as so:
for number in range(10):
total += number;
You can even get syntax highlighting by adding the language to the codeblock opening:
```python
for number in range(10):
total += number;
```
Discord will render that as so:
for number in range(10):
total += number;
Usually, Exercism test runners do not provide the test program's standard output to the user. There are exceptions, but it looks like the C# test runner doesn't.
ah yeah looks like since it's using Xunit, you need to handle output a special way for it to get captured https://xunit.net/docs/capturing-output