#R, 80 bytes
R, 80 bytes
Pretty repetitive :
function(h,v,a,b,c)cat(t<-c(a,rep(c,h),a,"\n"),d<-rep(c(b,"\n"),v),t,d,t,sep="")
Ungolfed :
function(h,v,a,b,c)
cat(t<-c(a,rep(c,h),a,"\n"),
d<-rep(c(b,"\n"),v),
t,d,t,
sep="")
#R, 80 bytes
Pretty repetitive :
function(h,v,a,b,c)cat(t<-c(a,rep(c,h),a,"\n"),d<-rep(c(b,"\n"),v),t,d,t,sep="")
Ungolfed :
function(h,v,a,b,c)
cat(t<-c(a,rep(c,h),a,"\n"),
d<-rep(c(b,"\n"),v),
t,d,t,
sep="")
R, 80 bytes
Pretty repetitive :
function(h,v,a,b,c)cat(t<-c(a,rep(c,h),a,"\n"),d<-rep(c(b,"\n"),v),t,d,t,sep="")
Ungolfed :
function(h,v,a,b,c)
cat(t<-c(a,rep(c,h),a,"\n"),
d<-rep(c(b,"\n"),v),
t,d,t,
sep="")