代码布道
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 '师今缀秩蓬莱班,子归连水复连山。';