mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 17:50:22 +00:00
12 lines
172 B
Prolog
12 lines
172 B
Prolog
#!/usr/bin/env swipl
|
|
|
|
:- set_prolog_flag(verbose, silent).
|
|
:- use_module(dleak).
|
|
|
|
:- initialization
|
|
main, halt.
|
|
|
|
main :-
|
|
current_prolog_flag(argv, [File]),
|
|
dleak(File).
|