2

I'm building a red lang application. How to create Windows executable (.exe) from red lang???

金馆长
  • 217
  • 2
  • 7
  • 1
    Perhaps you just should read the github Readme, it is explained with all details needed. So this is asking for the sake of asking. – iArnold Aug 14 '16 at 17:18

1 Answers1

3

If you have already the red executable, you call from the command line

red -c -t Windows yourprogram.red

and you will get yourprogram.exe as a Windows program

README.md

Of course I assume, you have also downloaded all the possibly additionally needed source files from either red-lang/download or github/red/red

If you have a recent rebol interpreter, you can compile with

do/args %red.r "-t Windows yourprogram.red" 

or use an available GUI shell for the red compiler e.g redcompiler

sqlab
  • 6,412
  • 1
  • 14
  • 29