Skip to content
This repository has been archived by the owner on Jun 23, 2018. It is now read-only.

Commit

Permalink
Polished examples.
Browse files Browse the repository at this point in the history
  • Loading branch information
max99x committed Sep 14, 2011
1 parent 61f9258 commit a58d2e1
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
5 changes: 3 additions & 2 deletions langs/brainfuck/examples-console.txt
@@ -1,7 +1,8 @@
Hello World
********************************************************************************
++++++++++[>+++++++>++++++++++>+++>+<<<<-]>++.>+.+++++++
..+++.>++.<<+++++++++++++++.>.+++.------.--------.>+.>.
++++++++++[>+++++++>++++++++++>+++>+<<<<-]
>++.>+.+++++++..+++.>++.<<+++++++++++++++.
>.+++.------.--------.>+.>.
********************************************************************************
Capitalize Input
********************************************************************************
Expand Down
9 changes: 6 additions & 3 deletions langs/brainfuck/examples-editor.txt
Expand Up @@ -12,9 +12,12 @@ Fibonacci
>>>++++++++++<
[->-[>+>>]>[+[-<+>]>+>>]<<<<<]
>[-]
>>[++++++++++++++++++++++++++++++++++++++++++++++++.[-]]
<[++++++++++++++++++++++++++++++++++++++++++++++++.[-]]
<<<++++++++++++++++++++++++++++++++++++++++++++++++.[-]
>>[++++++++++++++++++++++++
++++++++++++++++++++++++.[-]]
<[++++++++++++++++++++++++
++++++++++++++++++++++++.[-]]
<<<++++++++++++++++++++++++
++++++++++++++++++++++++.[-]
<<<<<<<.>.
>>[>>+<<-]>[>+<<+>-]>[<+>-]<<<-
]
Expand Down
6 changes: 3 additions & 3 deletions langs/coffee-script/examples-editor.txt
Expand Up @@ -4,16 +4,16 @@ class Animal
constructor: (@name) ->

move: (meters) ->
alert @name + " moved #{meters}m."
console.log @name + " moved #{meters}m."

class Snake extends Animal
move: ->
alert "Slithering..."
console.log "Slithering..."
super 5

class Horse extends Animal
move: ->
alert "Galloping..."
console.log "Galloping..."
super 45

sam = new Snake "Sammy the Python"
Expand Down
2 changes: 1 addition & 1 deletion langs/unlambda/examples-console.txt
Expand Up @@ -10,7 +10,7 @@ Echo

Loop
********************************************************************************
```si`k``s.H``s.e``s.l``s.l``s.o``s.
```si`k``s.H``s.e``s.l``s.l``s.o``s.
``s.w``s.o``s.r``s.l``s.d``s.!``sri
``si``si``si``si``si``si``si``si`ki
********************************************************************************

0 comments on commit a58d2e1

Please sign in to comment.