Created
October 21, 2014 11:04
-
-
Save kowey/7c9b54f200853da8c939 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
main :- do_loop(10). | |
do_loop(N) :- N =< 0. | |
do_loop(N) :- | |
jpl_new('java.lang.Integer', [0], _), | |
%garbage_collect_atoms, | |
statistics(atoms, NumAtoms), | |
write(NumAtoms), nl, | |
Nm1 is N-1, | |
do_loop(Nm1). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment