Docs.rs
pascal-0.1.4
Platform
aarch64-apple-darwin
aarch64-unknown-linux-gnu
i686-pc-windows-msvc
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
pascal 0.1.4
A modern Pascal compiler with build/intepreter/package manager built with Rust
Crate
Source
Builds
Feature flags
Documentation
Hide files
..
student_management
test_programs
01_basics.pas
02_functions.pas
03_strings.pas
04_arrays.pas
05_classes.pas
06_exceptions.pas
07_nested_functions.pas
08_math_algorithms.pas
09_class_hierarchy.pas
10_comprehensive.pas
advanced_features.pas
boolean_logic.pas
calculator.pas
cli_parallel.sh
comprehensive_features.pas
conditional.pas
constants.pas
example_unit.pas
expressions.pas
fibonacci.pas
formatter_demo.pas
formatter_example.pas
hello.pas
library_parallel.rs
loops.pas
mcp_parallel.rs
simple_loop.pas
simple_math.pas
1
2
3
4
program
HelloWorld;
begin
writeln(
'
Hello, World!
'
);
end
.