TestCode
Dernière modification : -
// 2007/07/30 03:33 / 90.1.187.152
code 1 : python
code 2 : php
code 3 : html
Page de test pour le code
code 1 : python
import sys
if len(sys.argv) == 1:
print "Hello",sys.argv[1]
code 2 : php
function hello($txt)
{
print("Hello ".$txt);
}
hello($_GET['name']);
code 3 : html
<html>
<body>
<h1>Hello</h1>
</body>
</html>