Skip to content

Instantly share code, notes, and snippets.

@zneo
zneo / static init
Created December 18, 2014 07:41
cpp
#include <iostream.h>
#include <string.h>
#include <stdlib.h>
void main()
{
for (int i =1;i<5; ++i)
{
static int a = i;
cout << a <<endl;
}
@zneo
zneo / test.py
Created July 13, 2013 03:22
Python: Just a test
var joe = 'joe';
var johnny = 'johnny';
var quaid = 'quaid';