interesting. didn't know such thing existed. i never expected to learn something in /prog/ 2day
Name:
Anonymous2012-10-09 3:47
LISP
Name:
Anonymous2012-10-09 5:02
@3
+1
TIL what transpilers are. Such a nerd xD
upboats4every1
also, check le jackson faive get... and your're privilege xDDD
@4 all my gay friends (deal w/ it) less-than-three programming in lisp, it's such a cute language and the community is really gay-friendly xDDDDDDDDD
@echo off
rem TXL Windows 95/98/ME/NT/2000/XP/Vista Install Script
rem J.R. Cordy, Queen's University, October 2002 (Rev Jul 2012)
rem Announce our plans
echo Installing the TXL commands in your system
echo/
pause
cls
rem What kind of place are we
echo Determining system environment ...
if "%OS%"=="Windows_NT" echo Windows NT, 2000, XP, Vista or 7.
if "%OS%"=="Windows_NT" set CommandDir="%windir%\System32"
if "%OS%"=="" echo Windows 95, 98 or ME.
if "%OS%"=="" set CommandDir="%windir%\Command"
echo/
pause
cls
rem Check we have the TXL distribution files
if exist bin\txl.exe goto gotem
if exist %USERPROFILE%\Desktop\Txl106 chdir %USERPROFILE%\Desktop\Txl106
if exist bin\txl.exe goto gotem
chdir %USERPROFILE%\Desktop\?*-Txl106\Txl106
if exist bin\txl.exe goto gotem
echo/
echo Can't find the unzipped TXL distribution folder Desktop\Txl106\ -
echo please make sure that it is on the Desktop and try again.
echo/
pause
exit
:gotem
rem OK copy the txl commands to the command dir
echo Copying TXL commands to the system command directory ...
copy/y bin\*.* %CommandDir%
if errorlevel 2 goto failed
echo Done.
echo/
pause
cls
rem And copy the txl library to the library dir
echo Copying TXL commands to the txl library directory ...
mkdir %CommandDir%\..\txl
copy/y lib\*.* %CommandDir%\..\txl
if errorlevel 2 goto failed
echo Done.
echo/
pause
cls
rem Time to test
echo Testing that TXL is installed ...
echo/
echo txl -V
txl -V
echo/
if errorlevel 2 goto failed
echo Ok.
echo/
pause
cls
cd test
echo Running test program ...
echo/
echo txl Ultimate.Que
txl Ultimate.Que
if errorlevel 2 goto failed
echo/
echo The answer to the Ultimate Question looks right to me.
echo/
pause
cls
goto tryout
:failed
echo/
echo Installation failed!
echo/
echo Possibly you are not logged in as adminstrator -
echo if so, please log in as adminstrator and try again.
echo/
pause
exit
rem Your turn
:tryout
echo TXL is now installed and working.
echo/
pause
exit