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/prototcol.vm
pmoura bb5f5accd7 jEdit templates.
git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@759 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
2003-02-07 18:34:12 +00:00

26 lines
535 B
Plaintext

## template = protocol
#buffermode ( "logtalk" )
#prompt ( "Protocol name:" $protocolname )
#prompt ( "Extended protocols (comma separated):" $protocols )
#if ( $protocols )
:- protocol($protocolname,
extends($protocols)).
#else
:- protocol($protocolname).
#end
#prompt ( "Version:" $version "1.0" )
#prompt ( "Author name:" $authorname )
#prompt ( "Comment:" $comment )
#today ( $date "yy/MM/dd" )
:- info([
version is $version,
author is '$authorname',
date is $date,
comment is '$comment').
#caret ()
:- end_protocol.