Hello World
C++
#include<iostream>
using namespace std;
int main(void)
{
cout<<"hello,world!"<<endl;
return 0;
}
Python R
print('hello,world!')
Matlab
disp('hello, world!');
Linux
echo "hello, world!"
Html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h3>hello,world!</h3>
<script>
document.write('你好')
</script>
</body>
</html>
标签:disp,cout,Hello,world,World,hello
From: https://www.cnblogs.com/xfk443/p/18094124