package com.andrexx.hello import android.app.Activity import android.os.Bundle import android.widget.TextView class helloworld extends Activity /** Called when the activity is first created. */ method onCreate(savedInstanceState=Bundle ) super.onCreate(savedInstanceState) tv = TextView(this) tv.setText("Android program written in NetRexx") setContentView(tv)