view general/rec.m @ 44:3cedfd4549ef

Code added since initial check in.
author samer
date Tue, 13 Jan 2015 14:03:17 +0000
parents
children
line wrap: on
line source
% rec - elementary struct constructor
%
% rec :: N:string, A -> struct { N::A }.
function s=rec(fn,val)
	s.(fn)=val;