Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 716 Bytes

readme.md

File metadata and controls

30 lines (20 loc) · 716 Bytes

Julia Win32 GUI

Calling the Win32 API from Julia (last tested on v1.0.1).

Getting started

include('winapi.jl')
using Main.WinApi

openwindow()

Or, if you insist on "Hello world" being in there somewhere:

openwindow(title="Hello world")

Motivation

Compared to other native GUI options on the Windows platform, the Win32 API is the fastest, the most flexible and by far the ugliest. So let's replace some of the ugliness with idiomatic Julia and see where it takes us.

More examples

For more examples, look at the files in the examples folder. If you include() them from the Julia REPL, you need to restart your session if you want to run the same or another example.