代码搜索:Pascal
找到约 9,253 项符合「Pascal」的源代码
代码结果 9,253
www.eeworm.com/read/306033/13754527
pas pax_pascal.pas
////////////////////////////////////////////////////////////////////////////
// PAXScript Interpreter
// Author: Alexander Baranovsky (ab@cable.netlux.org)
// ======================================
www.eeworm.com/read/306033/13754542
pas imp_pascal.pas
////////////////////////////////////////////////////////////////////////////
// PAXScript Importing
// Author: Alexander Baranovsky (ab@cable.netlux.org)
// ========================================
www.eeworm.com/read/306033/13754584
pas pascal_parser.pas
////////////////////////////////////////////////////////////////////////////
// PAXScript Interpreter
// Author: Alexander Baranovsky (ab@cable.netlux.org)
// ======================================
www.eeworm.com/read/306033/13754637
pp pascal_sets.pp
type
TMyEnum = (one, two, three);
var x: set;
y: set of TMyEnum;
x := ["abc", 123, 3.14];
y := [one, two];
x := x + [123, 345];
println x;
println two in y;