今天第一次在csdn上写博客,作为一个程序猿,写得最NB的程序那就是Hello world
<?php
echo "HELLO WORLD"
?>#include<iostream>
using namespace std;
int main()
{
cout<<"HELLO WORLD";
return 0;
}
public class HelloWorld {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println("Hello World");
}
}using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication3
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World");
}
}
}#import <Foundation/Foundation.h>
int main(int argc, const char * argv[])
{
@autoreleasepool {
// insert code here...
NSLog(@"Hello, World!");
}
return 0;
}
1509

被折叠的 条评论
为什么被折叠?



