Skip to content

Commit 270dcfa

Browse files
committed
Repo Update
- Initial commit
1 parent c216571 commit 270dcfa

34 files changed

+21965
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<div align="center">
44

5-
[![Chat on Discord](https://img.shields.io/discord/754884471324672040?style=for-the-badge)](https://discord.gg/tinyBigGAMES) [![Follow on Bluesky](https://img.shields.io/badge/Bluesky-tinyBigGAMES-blue?style=for-the-badge&logo=bluesky)](https://bsky.app/profile/tinybiggames.com)
5+
[![Join Facebook Group](https://img.shields.io/badge/Facebook-NitroPascal-blue?style=for-the-badge&logo=facebook)](https://www.facebook.com/groups/nitropascal) [![Chat on Discord](https://img.shields.io/discord/754884471324672040?style=for-the-badge)](https://discord.gg/tinyBigGAMES) [![Follow on Bluesky](https://img.shields.io/badge/Bluesky-tinyBigGAMES-blue?style=for-the-badge&logo=bluesky)](https://bsky.app/profile/tinybiggames.com)
66

77
**Modern Pascal • C Performance**
88

examples/testbed/Testbed.dpr

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{===============================================================================
2+
NitroPascal - Modern Pascal • C Performance
3+
4+
Copyright © 2025-present tinyBigGAMES™ LLC
5+
All Rights Reserved.
6+
7+
https://nitropascal.org
8+
9+
See LICENSE for license information
10+
===============================================================================}
11+
12+
program Testbed;
13+
14+
{$APPTYPE CONSOLE}
15+
16+
uses
17+
System.SysUtils,
18+
UTest.Arrays in 'UTest.Arrays.pas',
19+
UTest.CodeGen in 'UTest.CodeGen.pas',
20+
UTest.Common in 'UTest.Common.pas',
21+
UTest.ConditionalCompilation in 'UTest.ConditionalCompilation.pas',
22+
UTest.ControlFlow in 'UTest.ControlFlow.pas',
23+
UTest.Lexer in 'UTest.Lexer.pas',
24+
UTest.Numbers in 'UTest.Numbers.pas',
25+
UTest.Parameters in 'UTest.Parameters.pas',
26+
UTest.Parser in 'UTest.Parser.pas',
27+
UTest.Pointers in 'UTest.Pointers.pas',
28+
UTest.Records in 'UTest.Records.pas',
29+
UTest.Strings in 'UTest.Strings.pas',
30+
UTest.Types in 'UTest.Types.pas',
31+
UTestbed in 'UTestbed.pas',
32+
NitroPascal.CodeGen in '..\..\src\NitroPascal.CodeGen.pas',
33+
NitroPascal.Compiler in '..\..\src\NitroPascal.Compiler.pas',
34+
NitroPascal.Lexer in '..\..\src\NitroPascal.Lexer.pas',
35+
NitroPascal.Parser in '..\..\src\NitroPascal.Parser.pas',
36+
NitroPascal.Resolver in '..\..\src\NitroPascal.Resolver.pas',
37+
NitroPascal.Symbols in '..\..\src\NitroPascal.Symbols.pas',
38+
NitroPascal.Types in '..\..\src\NitroPascal.Types.pas',
39+
NitroPascal.Utils in '..\..\src\NitroPascal.Utils.pas';
40+
41+
begin
42+
UTestbed.RunTests();
43+
end.

examples/testbed/Testbed.dproj

Lines changed: 1162 additions & 0 deletions
Large diffs are not rendered by default.

examples/testbed/Testbed.res

87.2 KB
Binary file not shown.

examples/testbed/Testbed_Icon.ico

84.9 KB
Binary file not shown.

0 commit comments

Comments
 (0)