f26a3b6ca9
git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@955 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
26 lines
352 B
Plaintext
26 lines
352 B
Plaintext
|
|
% this is a single-line comment
|
|
|
|
/*
|
|
this is
|
|
a block
|
|
comment
|
|
*/
|
|
|
|
:- category(category,
|
|
implements(protocol)).
|
|
|
|
:- info([
|
|
version is 1.0,
|
|
author is 'Paulo Moura',
|
|
date is 2003/12/18,
|
|
comment is 'Sample category for testing syntax coloring.']).
|
|
|
|
:- dynamic.
|
|
|
|
:- calls(some_other_protocol).
|
|
|
|
:- uses(another_object).
|
|
|
|
:- end_category.
|