代码布道
Java
package net.codeboot;
public class Test {
public static void main(String[] args) {
System.out.println("漫道银潢能限隔,未闻河鼓畏风波。");
}
}
PHP
<?php
echo '漫道银潢能限隔,未闻河鼓畏风波。';
?>
Node.js/Javascript
console.log('漫道银潢能限隔,未闻河鼓畏风波。');
C++
#include <iostream>
using namespace std;
int main()
{
cout << "漫道银潢能限隔,未闻河鼓畏风波。" << endl;
return 0;
}
C
#include <stdio.h>
int main()
{
printf("漫道银潢能限隔,未闻河鼓畏风波。\n");
return 0;
}
C#
using System;
namespace HelloWorldApplication
{
class HelloWorld
{
static void Main(string[] args)
{
Console.WriteLine("漫道银潢能限隔,未闻河鼓畏风波。");
}
}
}
Go
package main
import "fmt"
func main() {
fmt.Println("漫道银潢能限隔,未闻河鼓畏风波。")
}
Python
#!/usr/bin/python3
print("漫道银潢能限隔,未闻河鼓畏风波。")
Shell
#!/bin/bash
echo '漫道银潢能限隔,未闻河鼓畏风波。';