1
0
forked from GitHub/gf-core

field names added to Prolog

This commit is contained in:
aarne
2006-05-16 21:10:47 +00:00
parent 29d04d8a90
commit 63f03f8c73
5 changed files with 17 additions and 14 deletions

View File

@@ -7,6 +7,9 @@ resource ResProlog = open Prelude in {
apps : Str -> SS -> SS = \f,x -> ss (app1 f x.s) ;
op1 : (s,x : Str) -> {s,x : Str} = \s,x -> {s = s ; x = x} ;
op2 : (s,x,y : Str) -> {s,x,y : Str} = \s,x,y -> {s = s ; x = x ; y = y} ;
request : Str -> Str = app1 "request" ;
answer : Str -> Str = app1 "answer" ;