Skip to content

Instantly share code, notes, and snippets.

View xiongxiao1992's full-sized avatar

Evergreen xiongxiao1992

View GitHub Profile
@xiongxiao1992
xiongxiao1992 / Test.c
Last active December 24, 2015 03:29
just a test program..
#include<stdio.h>
void main(){
printf("hello world");
}
@xiongxiao1992
xiongxiao1992 / Test.java
Created September 28, 2013 07:44
a java program that implements SINGLETON
class Animal{
private static Animal instance = new Animal();
private Animal(){
System.out.println("init the class");
}
public static Animal getInstance(){
return instance ;