Notify

BeanShell

source("/sdcard/com.googlecode.bshforandroid/extras/bsh/android.bsh");
droid = Android();
droid.call("notify","Notify using BeanShell","Message");

Bex

include("/sdcard/com.googlecode.bexforandroid/extras/bex/android.bex")
droid = Android()
droid.call("notify","Notify using Bex","Message")

Erlang

-module(notify_Erlang).
-export([main/0]).
main()->android:notify("Notify using Erlang","Message").

Html and JavaScript

<HTML><HEAD><SCRIPT>
var droid = new Android();
droid.notify("Notify using HTML and JavaScript","Message");
</SCRIPT></HEAD><BODY></BODY></HTML>

JRuby

droid = Android.new
droid.notify "Notify using JRuby","Message"

JScheme

(import "com.googlecode.rpc.*")
(define droid (com.googlecode.rpc.Android.))
(.call droid "notify" "Notify using JScheme" "Message")
(exit)

Jawk

import com.googlecode.rpc.*;
BEGIN{
  droid = new Android();
  droid.call("notify","Notify using Jawk","Message");
}

Lua

require "android"
android.notify("Notify using Lua","Message")

PHP

<?php 
require_once("Android.php");
$droid = new Android();
$droid->notify("Notify using PHP","Message");
?>

Perl

use Android;
my $droid = Android->new();
$droid->notify("Notify using Perl","Message");

Python

import android
droid = android.Android()
droid.notify("Notify using Python","Message")

Rhino

load("/sdcard/com.googlecode.rhinoforandroid/extras/rhino/android.js");
var droid = new Android();
droid.notify("Notify using Rhino","Message");

Shell

Not solved. Please send me answers if you have.

Sleep

import com.googlecode.rpc.*;
$droid = [new Android];
[$droid call : "notify","Notify using Sleep","Message"];

Squirrel

android <- Android();
android.notify("Notify using Squirrel","Message");

Tcl

source /sdcard/com.googlecode.tclforandroid/extras/tcl/android/android.tcl
set droid [android]
$droid notify "Notify using Tcl" "Message"

unset droid
return