simple.asm
~~~~~~~~~~
Very simple "Hello world" Win32 GUI application, it doesn't use any
includes, so you can compile and run it with Fresh even if it is not 
configured properly.


Arrays\
~~~~~~~
  Example how to create and use initialized arrays of structures in 
FASM/Fresh.


Char count\
~~~~~~~~~~~
  Windows program that counts characters typed in edit box.


ElfExe\
~~~~~~~
  Simple "Hello world" application for Linux.
In order to run it in Fresh you need to install andLinux distribution - 
see on "www.adnlinux.org" and to set its path in Fresh IDE options.
Of course you can compile this example without using andLinux and
start it on your own Linux instalation.


Fractal\
~~~~~~~~
  Good example how powerfull is FASM compiler. This project creates 
not an executable file, but .tga image file. You can view it using 
any graphic editor/viewer.


HotButton\
~~~~~~~~~~
  Demonstrates how to create simple "Hot" buttons - i.e. the button
changes his look when the mouse pointer hovers over it.


ProjectConverter\
~~~~~~~~~~~~~~~~~
  Small utility that will convert projects in old (v1.x.x) format to
the new (v2.0.0) format.


ScrollBox\
~~~~~~~~~~
  Example how to create Windows with scrollable client area using 
standard Fresh libraries.


SEH
~~~
  Example how to use "%finc%/macro/exceptions.inc" macro library for
structured exception handling inside assembly programs.


Visual pad
~~~~~~~~~~
  Simple project for Notepad like text editor, using Fresh GUI
library. Not finished, but you can use it as a example for project
created with current Fresh visual programming features.


