Hello world/Graphical: Difference between revisions

no edit summary
No edit summary
Line 1,598:
Compile with
<code>gfortran gtk2_mini.f90 -o gtk2_mini.x `pkg-config --cflags --libs gtk-2-fortran`</code>
 
 
=={{header|Fennel}}==
==={{libheader|LÖVE}}===
Line 1,610 ⟶ 1,612:
</lang>
To run this, you need to have LÖVE installed in your machine, and then run this command <code>fennel --compile love_test.fnl > main.lua; love .</code>. Since LÖVE has no compatibility with Fennel, we need to AOT-compile the file to a Lua file called <code>main.lua</code>, so then LÖVE can execute the program.
 
 
 
=={{header|FreeBASIC}}==
 
Line 1,673 ⟶ 1,678:
 
SwingUtilities.invokeLater( createAndShowGUI.runnable('Goodbye, World!') )</lang>
 
 
=={{header|FutureBasic}}==
Easy peasy.
<lang futurebasic>
alert 1, NSWarningAlertStyle, @"Goodbye, World!", @"It's been real.", @"See ya!", YES
 
HandleEvents
</lang>
 
 
 
=={{header|Gambas}}==
715

edits