This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/Logtalk/wenv/jedit/templates/category.vm

26 lines
544 B
Plaintext
Raw Normal View History

## template = category
#buffermode ( "logtalk" )
#prompt ( "Category name:" $categoryname )
#prompt ( "Implemented protocols (comma separated):" $protocols )
#if ( $protocols )
:- category($categoryname,
implements($protocols)).
#else
:- category($categoryname).
#end
#prompt ( "Version:" $version "1.0" )
#prompt ( "Author name:" $authorname )
#prompt ( "Comment:" $comment )
#today ( $date "yyyy/MM/dd" )
:- info([
version is $version,
author is '$authorname',
date is $date,
comment is '$comment']).
#caret ()
:- end_category.