Perl & Yun:

opkg update
opkg install perl
nano hello.pl
print "Hello World\n";
perl hello.pl
Hello World







Write comment (0 Comments)
opkg update
opkg install ruby
opkg install ruby-gems
opkg install ruby-core
nano hello-world.rb
puts 'Hello world'
ruby hello-world.rb
Hello world



Write comment (0 Comments)

Download Erlang software:

cd /mnt/sda1
wget -O erlang.tar.gz https://www.dropbox.com/s/5d2ce7acevb81t2/erlang.tar.gz?dl=0 --no-check-certificate
tar -zxvf erlang.tar.gz 
cd erlang
opkg update
opkg install erlang_R15B01-4_ar71xx.ipk
erl -noshell -eval 'io:fwrite("Hello, World!\n"), init:stop().'
Hello, World!








Write comment (0 Comments)

sigscheme (SigScheme is a R5RS Scheme interpreter for embedded use.) & Yun

opkg update
opkg install sigscheme
nano hello.scm
(display "Hello world!")
   (newline)
sscm hello.scm
Hello world!




Write comment (0 Comments)