4 lines
141 B
Text
4 lines
141 B
Text
procedure main ()
|
|
if &features == "MS Windows" then system("cls") # Windows
|
|
else if &features == "UNIX" then system("clear") # Unix
|
|
end
|