Welcome! This page is using CodeRay 1.1.2.
We currently have
3054 rays
in the database.
You can add a
New Ray
or browse the posted rays by pages.
a |
23 lines
of
Ruby
|
390 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8 |
class Gear
attr_reader :chainring, :cog, :rim, :tire
def initialize(chainring, cog, rim, tire)
@chainring = chainring
@cog = cog
@rim = rim
@tire = tire
... |
|
a |
37 lines
of
Ruby
|
604 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8
9 |
class Gear
attr_reader :chainring, :cog, :rim, :tire
def initialize(chainring, cog, rim, tire)
@chainring = chainring
@cog = cog
@rim = r... |
|
a |
37 lines
of
Ruby
|
604 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8
9 |
class Gear
attr_reader :chainring, :cog, :rim, :tire
def initialize(chainring, cog, rim, tire)
@chainring = chainring
@cog = cog
@rim = r... |
|
Example 1a |
15 lines
of
HTML
|
445 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7 |
<!DOCTYPE html>
<html lang="en">
<head>
<title>Hello!</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="w... |
|
Example 1a |
9 lines
of
JavaScript
|
207 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8 |
const para = document.querySelector('p');
para.addEventListener('click', updateName);
function updateName() {
let name = prompt('Enter a new name');
para.textContent = 'Player 1:
' + ... |
|
Example 1a |
8 lines
of
JavaScript
|
205 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7 |
const para = document.querySelector('p');
para.addEventListener('click', updateName);
function updateName() {
let name = prompt('Enter a new name');
para.textContent = 'Player 1: ' + na... |
|
test |
1 line
of
Python
|
3 Bytes |
Show |
Edit |
Expand |
|
ruby |
5 lines
of
Ruby
|
32 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5 |
class X
def y
puts 2
end
end |
|
d |
1 line
of
Ruby
|
22 Bytes |
Show |
Edit |
Expand |
|
Javascript Code example |
329 lines
of
JavaScript
|
13.1 KB |
Show |
Edit |
Expand |
1
2
3
4
5
6
7 |
if (typeof jQuery === 'undefined') { throw new Err... |
|