Terminal control/Cursor positioning: Difference between revisions

Content added Content deleted
(Added Racket)
(Added C# solution)
Line 70: Line 70:
The C version of the minesweeper game uses curses.
The C version of the minesweeper game uses curses.
[[Minesweeper_game#C]]
[[Minesweeper_game#C]]

=={{header|C sharp|C#}}==
{{works with|Mono|1.2}}
{{works with|Visual C sharp|Visual C#|2003}}
<lang csharp>static void Main(string[] args)
{
Console.SetCursorPosition(3, 6);
Console.Write("Hello");
}</lang>


=={{header|Euphoria}}==
=={{header|Euphoria}}==