Initial data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 72d218235f
commit f23f22d71c
199087 changed files with 3378941 additions and 0 deletions

View file

@ -0,0 +1,3 @@
const integer: foo is 42;
const string: bar is "bar";
const blahtype: blah is blahvalue;

View file

@ -0,0 +1 @@
const integer: foobar is 2 * length(bar) * (foo - 35);

View file

@ -0,0 +1,4 @@
const func float: deg2rad (in float: degree) is # User defined function
return degree * PI / 180.0;
const float: rightAngle is deg2rad(90.0);

View file

@ -0,0 +1 @@
const string: fileData is getf("some_file.txt");

View file

@ -0,0 +1 @@
const string: unixDict is getHttp("www.puzzlers.org/pub/wordlists/unixdict.txt");

View file

@ -0,0 +1 @@
const type: blahtype is integer;