#Console.WriteLine()

15 messages · Page 1 of 1 (latest)

stark path
#

Hi everyone. How to use Console.WriteLine() in c# exercism ??

tawdry marsh
#

do you have an example of something you're trying to do?

stark path
#

thank @tawdry marsh reply. i try log with Console.Write but not see that in console

tawdry marsh
#

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

stark path
tawdry marsh
#

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

stark path
#

i trying with HelloWorld ex. I Passed test but I don't see what I want to print

#

where "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" print ??

tall loomBOT
#

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;
hybrid kindle
#

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.

tawdry marsh