Last active
April 14, 2019 16:56
-
-
Save lagagain/082d8b360f4bf1c4c73f9636a3757a18 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (require 'abcl-contrib) | |
| (require 'abcl-asdf) | |
| (require 'jss) | |
| (defpackage id.lag.tesabcl | |
| (:use cl abcl-contrib abcl-asdf jss java)) | |
| (in-package id.lag.tesabcl) | |
| (jcall "println" #"java.lang.System.out" "Hello, World") | |
| (jcall "println" #"System.out" "Hello, Java") | |
| (jclass-methods (jclass "java.lang.System")) | |
| (jclass-methods (jobject-class "java.lang.System.out")) | |
| (let ((obj #"java.lang.System.out")) | |
| (print obj) | |
| (jclass-methods (jclass-of obj))) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment