Recent public codes are listed below. You can filter them by the following programming languages:
- view
- All
- Ada
- Assembler
- Assembler
- AWK (gawk)
- AWK (mawk)
- Bash
- bc
- Brainf**k
- C
- C#
- C++
- C++0x
- C99 strict
- CLIPS
- Clojure
- COBOL
- COBOL 85
- Common Lisp (clisp)
- D (dmd)
- Erlang
- F#
- Factor
- Falcon
- Forth
- Fortran
- Go
- Groovy
- Haskell
- Icon
- Intercal
- Java
- Java7
- JavaScript (rhino)
- JavaScript (spidermonkey)
- Lua
- Nemerle
- Nice
- Nimrod
- Objective-C
- Ocaml
- Oz
- Pascal (fpc)
- Pascal (gpc)
- Perl
- Perl 6
- PHP
- Pike
- Prolog (gnu)
- Prolog (swi)
- Python
- Python 3
- R
- Ruby
- Scala
- Scheme (guile)
- Smalltalk
- SQL
- Tcl
- Text
- Unlambda
- VB.NET
- Whitespace
-
1 2 3 4 5 6 7 8 9
i=0 word="hello" bar="" for ((i=1;i<=${#word};i++)) do foo="Letter $i" $word | cut -c$i > $bar echo $foo $bar bar=""
-
1 2 3 4 5 6 7 8 9
i=0 word="hello" bar="" for ((i=1;i<=${#word};i++)) do foo="Letter $i" $word | cut -c$i > bar echo $foo $bar bar=""
-
1 2 3 4 5 6 7 8 9
i=0 word="hello" bar="" for ((i=1;i<=${#word};i++)) do foo="Letter $i" bar="$word | cut -c$i" echo $foo eval $bar bar=""
-
1 2 3 4 5 6 7 8 9
i=0 word="hello" bar="" for ((i=1;i<=${#word};i++)) do foo="Letter $i" bar="$word | cut -c$i" echo $foo eval($bar) bar=""
-
1 2 3 4 5 6 7 8 9
i=0 word="hello" bar="" for ((i=1;i<=${#word};i++)) do foo="Letter $i" $bar=$($word | cut -c$i) echo $foo $bar bar=""
-
1 2 3 4 5 6 7 8 9
i=0 word="hello" bar="" for ((i=1;i<=${#word};i++)) do foo="Letter $i" bar=$($word | cut -c$i) echo $foo $bar bar=""
-
1 2 3 4 5 6 7 8 9
i=0 word="hello" bar="" for ((i=1;i<=${#word};i++)) do foo="Letter $i" bar=$($word | cut -c$i) echo $bar bar=""
-
1 2 3 4 5 6 7 8 9
i=0 word="hello" bar="" for ((i=1;i<=${#word};i++)) do foo="Letter $i" bar=`word | cut -c i` echo $bar bar=""
-
1 2 3 4 5 6 7 8 9
i=0 word="hello" bar="" for ((i=1;i<=${#word};i++)) do foo="Letter $i" bar=`$word | cut -c$i` echo $bar bar=""
-
1 2 3 4 5 6 7 8 9
i=0 word="hello" bar="" for ((i=1;i<=${#word};i++)) do foo="Letter $i" bar=eval($word | cut -c$i) echo $bar bar=""
-
1 2 3 4 5 6 7 8 9
i=0 word="hello" bar="" for ((i=1;i<=${#word};i++)) do foo="Letter $i" bar=($word | cut -c$i) echo $bar bar=""
-
1 2 3 4 5 6 7 8 9
i=0 word="hello" bar="" for ((i=1;i<=${#word};i++)) do foo="Letter $i" bar='$word | cut -c$i' echo $bar bar=""
-
1 2 3 4 5 6 7 8 9
i=0 word="hello" bar="" for ((i=1;i<=${#word};i++)) do foo="Letter $i" bar=$word | cut -c$i echo $bar bar=""
-
1 2 3 4 5 6 7 8 9
i=0 word="hello" for ((i=1;i<=${#word};i++)) do foo="Letter $i" bar=$word | cut -c$i echo $bar done
-
1 2 3 4 5 6 7 8 9
i=0 word="hello" for ((i=1;i<=${#word};i++)) do foo="Letter $i" bar=$word | cut -c$i echo $foo $bar done
-
1 2 3 4 5 6 7
i=0 word="hello" for ((i=1;i<=${#word};i++)) do echo "Letter $i" $word | cut -c$i done
-
1 2 3 4 5 6 7 8
i=0 word="hello" for ((i=1;i<=${#word};i++)) do foo="Letter $i" echo $foo $word | cut -c$i done
-
1 2 3 4 5 6 7 8 9
i=0 word="hello" for ((i=1;i<=${#word};i++)) do foo="Letter $i" bar=$word | cut -c$i echo $foo $bar done
-
1 2 3 4 5 6 7 8 9
i=0 word="hello" for ((i=1;i<=${#word};i++)) do foo="Letter $i" bar="$word | cut -c$i" echo $foo $bar done
-
1 2 3 4 5 6 7 8 9
i=0 word="hello" for ((i=1;i<=${#word};i++)) do foo = "Letter $i" bar = "$word | cut -c$i" echo $foo $bar done
-
1 2 3 4 5 6 7 8 9
i=0 word="hello" for ((i=1;i<=${#word};i++)) do foo = "Letter $i" bar = $word | cut -c$i echo $foo $bar done
-
1 2 3 4 5 6 7 8 9
i=0 word="hello" for ((i=1;i<=${#word};i++)) do foo = "Letter $i"; bar = $word | cut -c$i; echo $foo $bar; done
-
1 2 3 4 5 6 7 8 9
i=0 word="hello" //read -p "Please enter a word to spell: " word for ((i=1;i<=${#word};i++)) do foo = "Letter $i"; bar = $word | cut -c$i; echo $foo $bar; done
-
1 2 3 4 5 6 7 8 9
i=0 word="hello" //read -p "Please enter a word to spell: " word for ((i=1;i<=${#word};i++)) do $foo = "Letter $i"; $bar = $word | cut -c$i; echo $foo $bar; done
-
1 2 3 4 5 6 7 8 9
i=0 word="hello" //read -p "Please enter a word to spell: " word for ((i=1;i<=${#word};i++)) do $foo = "Letter $i"; $foo .= $word | cut -c$i; echo $foo; done
-
1 2 3 4 5 6 7
i=0 word="hello" //read -p "Please enter a word to spell: " word for ((i=1;i<=${#word};i++)) do echo "Letter $i" . $word | cut -c$i; done
-
1 2 3 4 5 6 7
i=0 word="hello" //read -p "Please enter a word to spell: " word for ((i=1;i<=${#word};i++)) do echo "Letter $i" . "$word | cut -c$i"; done
-
1 2 3 4 5 6 7
i=0 word="hello" //read -p "Please enter a word to spell: " word for ((i=1;i<=${#word};i++)) do echo "Letter $i" . $word | cut -c$i done
-
1 2 3 4 5 6 7
i=0 word="hello" //read -p "Please enter a word to spell: " word for ((i=1;i<=${#word};i++)) do echo $word | cut -c$i done
-
1 2 3 4 5 6 7
i=0 word="hello" read -p "Please enter a word to spell: " word for ((i=1;i<=${#word};i++)) do echo $word | cut -c$i done


