This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/local/bin/nthe -p | |
if .environment~theco.initialized \= .nil then return | |
/* | |
* Initialize classic Rexx function packages | |
*/ | |
call ReLoadFuncs | |
/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Rearranges patches of a wave-file (shuffles them like a card deck) | |
program REARRANGE | |
include 'fsublib.fi' | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C This one is almost an obfu, but valid FORTRAN 77 | |
C Demonstrated features: character format identifiers, arrays as | |
C internal files, implied-DO-loops, importance of the blank character, | |
C rules for continuation lines, substrings, implicit type declaration... | |
565760C H ARA C T ERM S G ( 4 ) * 1 3 7 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct tag {type, params, lastp, children, last, parent} | |
struct param {name, value} | |
word = SPAN("_0123456789" && &LCASE) | |
xml = (("<!--" && ARB && "-->") $ *ITEM(children(current),last(current) = last(current) + 1) | | |
"<" && word $ *type(current = ITEM(children(current),last(current) = last(current) + 1) = |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Snocone version (obscure C-like SNOBOL preprocessor) | |
stack = array(10); sp = 0 | |
procedure push() | |
{ | |
nreturn .stack[sp = sp + 1] | |
} | |
procedure pop() |
NewerOlder