/*
 *  Copyright 2012 OpenSourceResearchInstitute.org
 *  Licensed under GNU General Public License version 2
 *
 * author seanhalle@yahoo.com
 */

#include <malloc.h>
#include <stdlib.h>

#include "VSs__Hello_World/VSs__Hello_World.h"

/**
 * 
 */
int main( int argc, char **argv )
 { 
   
   DEBUG__printf2(TRUE, "arguments: %s | %s", argv[0], argv[1] );
   
   VSs__Hello_World( );
   
   exit(0); //cleans up
 }
