From 2a25b4f37eab6b3e29a2728300fcfc7ef9a58b08 Mon Sep 17 00:00:00 2001 From: Gabriel Pettier Date: Tue, 14 Aug 2012 16:36:57 +0300 Subject: [PATCH] Update README.md --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 69f43cf..b88d777 100644 --- a/README.md +++ b/README.md @@ -11,15 +11,15 @@ Python module to access Java class as Python class, using JNI. quick overview -------------- ->>> from jnius.reflect import autoclass ->>> autoclass('java.lang.System').out.println('Hello world') -Hello world + >>> from jnius.reflect import autoclass + >>> autoclass('java.lang.System').out.println('Hello world') + Hello world ->>>Stack = autoclass('java.util.Stack') ->>>stack = Stack() ->>>stack.push('hello') ->>>stack.push('world') ->>>print stack.pop() -world ->>>print stack.pop() -hello \ No newline at end of file + >>>Stack = autoclass('java.util.Stack') + >>>stack = Stack() + >>>stack.push('hello') + >>>stack.push('world') + >>>print stack.pop() + world + >>>print stack.pop() + hello \ No newline at end of file