Data update

This commit is contained in:
Ingy döt Net 2026-02-01 16:33:20 -08:00
parent 5150844a7d
commit 4bb20c9b71
7735 changed files with 38060 additions and 199180 deletions

View file

@ -2,19 +2,19 @@ import extensions;
compareStrings = (val1,val2)
{
if (val1 == val2) { console.printLine("The strings ",val1," and ",val2," are equal") };
if (val1 != val2) { console.printLine("The strings ",val1," and ",val2," are not equal") };
if (val1 > val2) { console.printLine("The string ",val1," is lexically after than ",val2) };
if (val1 < val2) { console.printLine("The string ",val1," is lexically before than ",val2) };
if (val1 >= val2) { console.printLine("The string ",val1," is not lexically before than ",val2) };
if (val1 <= val2) { console.printLine("The string ",val1," is not lexically after than ",val2) }
if (val1 == val2) { Console.printLine("The strings ",val1," and ",val2," are equal") };
if (val1 != val2) { Console.printLine("The strings ",val1," and ",val2," are not equal") };
if (val1 > val2) { Console.printLine("The string ",val1," is lexically after than ",val2) };
if (val1 < val2) { Console.printLine("The string ",val1," is lexically before than ",val2) };
if (val1 >= val2) { Console.printLine("The string ",val1," is not lexically before than ",val2) };
if (val1 <= val2) { Console.printLine("The string ",val1," is not lexically after than ",val2) }
};
public program()
public Program()
{
var s1 := "this";
var s2 := "that";
compareStrings(s1,s2);
console.readChar()
Console.readChar()
}