add v2.0 Beta release variants

This commit is contained in:
sayyadirfanali
2025-12-14 18:39:00 +05:30
parent 9138e77400
commit 24ccfd2458
53 changed files with 44771 additions and 11607 deletions

19
sample.txt Normal file
View File

@@ -0,0 +1,19 @@
Myna
ABCDEFGHJIKLMNOPQRSTUVWXYZ
abcdefghjiklmnopqrstuvwxyz
1234567890(){}[]/\<>,.;:`'
# Perl
$_="krjhruaesrltre c a cnP,ohet";$_.=$1,print$2while s/(..)(.)//;print"\n"
-- Haskell
mapM_ print . take 10 . iterate (\n -> if even n then n `div` 2 else 3*n + 1)
# bash
find . -name "*.log" -mtime +30 -exec gzip {} \; | tee audit.txt | wc -l
// Rust
(0..10).map(|x| x*x).filter(|&x| x%2==0).collect::<Vec<_>>()
⍝ APL
life ← { ⊃1 ⍵ .∧ 3 4 = +/ +⌿ ¯1 0 1 ∘.⊖ ¯1 0 1 ⌽¨ ⊂⍵ }