()
| 17 | } |
| 18 | |
| 19 | public static int pid() { |
| 20 | Map<String, Term> solution; |
| 21 | Query q = new Query("current_prolog_flag(pid, PID)"); |
| 22 | solution = q.oneSolution(); |
| 23 | return solution.get("PID").intValue(); |
| 24 | } |
| 25 | |
| 26 | public static void main(String argv[]) { |
| 27 | int max = 20; |
no test coverage detected