Skip to content

Instantly share code, notes, and snippets.

View mer30hamid's full-sized avatar

Hamid Kord mer30hamid

View GitHub Profile
@mer30hamid
mer30hamid / Nana-int-01.cpp
Last active August 29, 2015 14:02
How easy to create a Hello World program with Nana?
#include <nana/gui/wvl.hpp>
#include <nana/gui/widgets/label.hpp>
int main()
{
using namespace nana::gui;
form fm;
label lb(fm, fm.size());
lb.caption(L"Hello, World");
fm.show();
@mer30hamid
mer30hamid / test01
Created June 17, 2014 20:08
my first gist - just a test !
function test(){
for(i=1;i<=100;++i){
alert("Hi");
}
}