Skip to content

Instantly share code, notes, and snippets.

View QuantumQuacken's full-sized avatar

QuantumQuacken

  • In the middle of nowhere
View GitHub Profile
@Winwardo
Winwardo / QuickSort.pas
Created October 5, 2011 14:35
Quicksort algorithm in Pascal
program quicksort;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Classes, windows;