Giter Site home page Giter Site logo

fort-ascension / red Goto Github PK

View Code? Open in Web Editor NEW

This project forked from red/red

0.0 1.0 0.0 14.49 MB

Red is a next-generation programming language strongly inspired by Rebol, but with a broader field of usage thanks to its native-code compiler, from system programming to high-level scripting and cross-platform reactive GUI, while providing modern support for concurrency, all in a zero-install, zero-config, single 1MB file!

Home Page: http://red-lang.org

License: Boost Software License 1.0

Red 71.90% Rebol 27.89% Java 0.16% Shell 0.04%

red's Introduction

Join the chat at https://gitter.im/red/red Travis build

Red Programming Language

Red is a new programming language strongly inspired by Rebol, but with a broader field of usage thanks to its native-code compiler, from system programming to high-level scripting, while providing modern support for concurrency and multi-core CPUs.

Red has its own complete cross-platform toolchain, featuring two compilers, an interpreter and a linker, not depending on any third-party library, except for a Rebol2 interpreter, required during the bootstrap phase. Once complete, Red will be self-hosted.

The Red software stack also contains another language, Red/System, which is a low-level dialect of Red. It is a limited C-level language with a Red look'n feel, required to build Red's runtime library and be the target language of Red's compiler. More information at red-lang.org.

Making a Red "Hello World"

The Red toolchain comes as a single half-megabyte executable file that you can download from here for the big-3 platforms.

  1. Put the downloaded red binary in a folder that's in the PATH, or just in the working folder.

  2. In a code or text editor, write the following Hello World program:

     Red [
     	Title: "Simple hello world script"
     ]
     
     print "Hello World!"
    
  3. Save it under the name: hello.red

  4. From a terminal (works from DOS too), run it with:

     $ red hello.red
    
  5. You should see the Hello World! output.

  6. Want to generate a compiled executable from that program?

     $ red -c hello.red
     $ ./hello
    
  7. Want to cross-compile to another supported platform?

     $ red -c -t Windows hello.red
     $ red -c -t Darwin hello.red
     $ red -c -t Linux-ARM hello.red
    

The command-line options are:

red [options] [file]

[file]

Any Red or Red/System source file. If no file and no option is provided, the REPL will be launched. If a file with no option is provided, the file will be simply run by the interpreter (it is expected to be a Red script with no Red/System code).

[options]

-c, --compile                  : Forces generation of an executable in 
                                 the working folder.

-d, --debug, --debug-stabs     : Compile source file in debug mode. STABS
                                 is supported for Linux targets.

-dlib, --dynamic-lib           : Generate a shared library from the source
                                 file.

-h, --help                     : Output this help text.

-o <file>, --output <file>     : Specify a non-default [path/][name] for
                                 the generated binary file.

-r, --no-runtime               : Do not include runtime during Red/System
                                 source compilation.

-t <ID>, --target <ID>         : Cross-compile to a different platform
                                 target than the current one (see targets
                                 table below).

-v <level>, --verbose <level>  : Set compilation verbosity level, 1-3 for
                                 Red, 4-11 for Red/System.

-V, --version                  : Output binary version string.

--red-only                     : Stop just after Red-level compilation. 
                                 Use higher verbose level to see compiler
                                 output. (internal debugging purpose)

Cross-compilation targets:

MSDOS        : Windows, x86, console (+ GUI) applications
Windows      : Windows, x86, GUI applications
Linux        : GNU/Linux, x86
Linux-ARM    : GNU/Linux, ARMv5, armel (soft-float)
RPi          : GNU/Linux, ARMv5, armhf (hard-float)
Darwin       : MacOSX Intel, console-only applications
Syllable     : Syllable OS, x86
FreeBSD		 : FreeBSD, x86
Android      : Android, ARMv5
Android-x86	 : Android, x86

Running the Red REPL

  1. Just run the red binary with no option to access the REPL.

     -=== Red Console alpha version ===-
     (only ASCII input supported)
     
     red>>
    
  2. You can use it to test rapidly some Red code:

     red>> 1 + 2
     == 3
     
     red>> inc: func [n][n + 1]
     == func [n][n + 1]
     
     red>> inc 123
     == 124
    

Running Red from the sources

The compiler and linker are currently written in Rebol. Please follow the instructions for installing the compiler toolchain in order to run it from sources:

  1. Clone this git repository or download an archive (ZIP button above or from tagged packages).

  2. Download a Rebol interpreter suitable for your OS: Windows, Linux (or Linux), Mac OS X, FreeBSD, OpenBSD, Solaris

  3. Extract the rebol binary, put it in root folder, that's all!

  4. Let's test it: run ./rebol, you'll see a >> prompt appear. Windows users need to double-click on the rebol.exe file to run it.

  5. From the REBOL console type:

     >> do/args %red.r "%tests/hello.red"
    

The compilation process should finish with a ...output file size message. The resulting binary is in the working folder. Windows users need to open a DOS console and run hello.exe from there.

To see the intermediary Red/System code generated by the compiler, use:

    >> do/args %red.r "-v 2 %tests/hello.red"

You can also compile the Red console from source:

    >> do/args %red.r "%environment/console/console.red"

Note: the -c argument is not necessary when launching the Red toolchain from sources, as the default action is to compile the input script (the binary form default action is run the input script through the interpretor).

Contributing

If you want to contribute code to the Red project be sure to read the guidelines first.

It is usually a good idea to inform the Red team about what changes you are going to make in order to ensure that someone is not already working on the same thing. You can reach us through the mailing-list or our chat room.

Satisfied with the results of your change and want to issue a pull request on Github?

Make sure the changes pass all the existing tests, add relevant tests to the test-suite and please test on as many platforms as you can. You can run all the tests using (from Rebol console, at repository root):

    >> do %run-all.r

Anti-virus false positive

Some anti-virus programs are a bit too sensitive and can wrongly report an alert on some binaries generated by Red, if that happens to you, please fill a ticket here, so we can report the false positive.

License

Both Red and Red/System are published under BSD license, runtime is under BSL license. BSL is a bit more permissive license than BSD, more suitable for the runtime parts.

red's People

Contributors

dockimbel avatar peterwawood avatar qtxie avatar earl avatar oldes avatar rmn64k avatar greggirwin avatar kealist avatar ingohohmann avatar iarnold avatar rheber avatar bitdeli-chef avatar steevegit avatar wisegenius avatar rebolek avatar giuliolunati avatar stephaneveneri avatar gitter-badger avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.