/**
* Authors: Jonathan MERCIER
* License: GPLv3+
* Bugs: none
*/
import tango.io.Console;
void main(){
Cout("Entrer votre nom: ")();
char[] nom = Cin.get;
Cout("Salut ")(nom).newline;
}
$ ldc -D -w input
$ cat input.html
<html><head>
<META http-equiv="content-type" content="text/html; charset=utf-8">
<title>input</title>
</head><body>
<h1>input</h1>
<!-- Generated by Ddoc from input.d -->
<br><br>
<hr><small>Page generated by <a href="http://www.digitalmars.com/d/1.0/ddoc.html">Ddoc</a>. </small>
</body></html>
[jonathan@jonathan D]$ v