nmerouze (owner)

Revisions

gist: 9250 Download_button fork
public
Public Clone URL: git://gist.github.com/9250.git
Embed All Files: show embed
Text #
1
2
# simple.red
Ruby.puts "Hello World!"
Text #
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env ruby
require 'rubygems'
 
require 'red'
require 'red/executable'
 
Red.compile_red_to_js(ARGV.last)
 
require 'johnson'
 
Johnson.load(File.dirname(__FILE__) + "/#{ARGV.last}.js")