在这新春佳节到来之际,小李在此给你们送上最诚挚的祝福,祝你们都有php
print("Happy Year of the Rat !")
public class HappyNewYear { public static void main(String[] args) { System.out.println("Happy Year of the Rat !"); } }
#include <stdio.h> int main() { printf("Happy Year of the Rat !"); return 0; }
#include <iostream> using namespace std; int main() { cout << "Happy Year of the Rat !" << endl; return 0; }
using System; namespace HappyNewYearApplication { class HappyNewYear { static void Main(string[] args) { Console.WriteLine("Happy Year of the Rat !"); Console.ReadKey(); } } }
NSLog(@"Happy Year of the Rat !")
console.log("Happy Year of the Rat !");
<?php echo "Happy Year of the Rat !"; ?>
<script type="text/vbscript"> document.write("Happy Year of the Rat !") </script>
showMessage('Happy Year of the Rat !')
print "Happy Year of the Rat !"
disp('Happy Year of the Rat !')
puts "Happy Year of the Rat !"
Toast.makeText(getApplicationContext(), "Happy Year of the Rat !",Toast.LENGTH_SHORT).show()
print 'Happy Year of the Rat !'
cat("Happy Year of the Rat !")
<body><h1>Happy Year of the Rat !<h1></body>
response.write("Happy Year of the Rat !")
Alert.show("Happy Year of the Rat !")
package main import ( "fmt" ) func main() { a :="Happy Year of the Rat !" fmt.Printf("%s",a) }