Sure is.
Here is a simple mirror I made in about 2 minutes.
enable static occlusion
`Mirror`
make object plain 1,50,50
yrotate object 1,270
position object 1,0,0,25
set object 1,1,0,1
`Random scene`
for b=2 to 10
make object cube b,5
position object b,50+rnd(30),10,-25+rnd(10)
color object b,rgb(rnd(255),rnd(255),rnd(255))
next b
position camera 100,50,-150
point camera 30,0,0
hide mouse
sync on
sync rate 0
do
set cursor 0,0
print screen fps()
for g=2 to 10
if upkey()=1 then move object g,5
if downkey()=1 then move object g,-5
next g
position camera object position x(1),object position y(1),object position z(1)
rotate camera 0,90,0
get image 1,250,200,390,280
texture object 1,1
position camera 100,50,-150
point camera 30,0,0
sync
loop