This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
program FreePascalConstGenerics; | |
// Using the Delphi-compatible syntax mode lets us leave out the | |
// `generic` and `specialize` keywords when defining our generic types. | |
{$mode Delphi}{$H+}{$J-} | |
type ICalc<const L: PtrInt; const R: PtrInt> = record | |
const | |
Add = L + R; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
program LolNoadJayEss; | |
{$mode Delphi} | |
uses SysUtils, JS, NodeJS, NodeJSApp, NodeJSFS; | |
type | |
TMyApplication = class(TNodeJSApplication) | |
procedure DoRun; override; | |
end; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unit Main; | |
interface | |
uses | |
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, | |
ExtCtrls, Menus, StdCtrls; | |
const | |
crMaletUp : integer = 5; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//---------------------------------------------------------------------------- | |
//Borland C++Builder | |
//Copyright (c) 1987, 1998-2002 Borland International Inc. All Rights Reserved. | |
//---------------------------------------------------------------------------- | |
//--------------------------------------------------------------------------- | |
#include <vcl.h> | |
#pragma hdrstop | |
#include <stdlib.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
program ExampleDelphi; | |
{$VARPROPSETTER ON} | |
type | |
TRecord = record | |
private | |
FBool: Boolean; | |
function GetBoolOut(out Index: NativeUInt): Boolean; | |
function GetBoolVar(var Index: NativeUInt): Boolean; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unit NumberToWords; | |
{$mode ObjFPC}{$H+}{$J-} | |
{$ImplicitExceptions Off} | |
{----------------------------------------------------------------------------- | |
Unit Name: NumberToWords | |
Author: Dave Keighan | |
Date: 29-Jan-2006 | |
Purpose: Provide Number To Words functionality. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This unit uses record types in conjunction with record "management operators" to implement | |
// (pretty basic) smart pointers specifically for class types. | |
unit ManagedObject; | |
// ↓↓↓ this just enables Free Pascal's Delphi-syntax compatibility mode | |
{$mode Delphi}{$H+} | |
{$Assertions On} | |
interface |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
enum Month { Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec } | |
enum Order { LT, EQ, GT } | |
function compareMonth(m1: Month, m2: Month): Order { | |
switch ([m1, m2]) { | |
case [Month.Jan, Month.Jan]: { | |
return Order.EQ; | |
} | |
case [Month.Jan, undefined]: { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unit Expected; | |
// The "mode Delphi" directive below turns on Free Pascal's Delphi-syntax compatibility mode, | |
// needed here to declare and write the generics in the style I have. | |
{$mode Delphi}{$H+}{$J-} | |
{$ImplicitExceptions Off} | |
{$Assertions On} | |
interface |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unit FrameBuffer; | |
{$mode ObjFPC}{$H+}{$J-} | |
{$asmmode GAS} | |
{$modeswitch AdvancedRecords} | |
{$modeswitch AutoDeref} | |
{$coperators On} | |
interface |