mirror of
https://github.com/revanced/smali.git
synced 2025-05-01 15:14:32 +02:00

- updated the tests and examples to use the new comment style - changed the lexer error messages to include the source file path git-svn-id: https://smali.googlecode.com/svn/trunk@83 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
23 lines
596 B
Smali
23 lines
596 B
Smali
.class public LHelloWorld;
|
|
|
|
#Ye olde hello world application
|
|
#To assemble and run this on a phone or emulator:
|
|
#
|
|
#java -jar smali.jar --dex HelloWorld.smali
|
|
#zip HelloWorld.zip classes.dex
|
|
#adb push HelloWorld.zip /data/local
|
|
#adb shell dalvikvm -cp /data/local/HelloWorld.zip HelloWorld
|
|
|
|
.super Ljava/lang/Object;
|
|
|
|
.method public static main([Ljava/lang/String;)V
|
|
.registers 2
|
|
|
|
sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
|
|
|
|
const-string v1, "Hello World!"
|
|
|
|
invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/String;)V
|
|
|
|
return-void
|
|
.end method |