Welcome! This page is using CodeRay 1.1.2.

We currently have 3042 rays in the database.
You can add a New Ray or browse the posted rays by pages.

Page 213, 10 entries

Qi Programming language 2 lines of Plain text by frd 40 Bytes Show Edit Expand
1
2
(define say
  X -> (output "~A~%" X))
test 2 lines of SQL by anon 31 Bytes Show Edit Expand
1
2
SELECT *
FROM sys.sysprocesses
html example 32 lines of HTML by ssa 1.17 KB Show Edit Expand
1
2
3
4
5
6
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
   <title>Слои</title>
   ...
test 9 lines of Java 243 Bytes Show Edit Expand
1
2
3
4
5
6
public Assay AssayGet(string assayName)
{
  Assay assay = Assay.CreateWithAssayFolder(AssayPath, assayName);

  if (!assay.Exists)
    assay = Assay.CreateWithAssayFolder(Globals.SysConfig.Exp...
Plain text test 1 line of Plain text by samuelgilman 64 Bytes Show Edit Expand
1
'Plain text' crashed my app so I'm looking for the right string.
javascript with Japanese comment 28 lines of JavaScript by mashiki 652 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
Ext.onReady(function() {
  var name='RepRankKw',
    AP = Ext.namespace('App'),
    UT = AP.util,
    RD = AP.renderers;
  // 1-12 レポート用 指定キーワードのランク
  Ext.regModel('RepSpKeyRank', {
    fields:[
      'c...
C++ 37 lines of C++ 773 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
11
// compile with: --std=c++0x
#include <algorithm>
#include <iostream>
#include <vector>
#include <functional>
using namespace std;

typedef function<int(int)> FuncIntToInt;

int main() 
{...
PHP Test 8 lines of Python by Test 401 Bytes Show Edit Expand
1
2
3
4
5
ghci> :t fmap (++) (Just "hey")  
fmap (++) (Just "hey") :: Maybe ([Char] -> [Char])  
ghci> :t fmap compare (Just 'a')  
fmap compare (Just 'a') :: Maybe (Char -> Ordering)  
ghci> :t fmap com...
Objective-C test 6 lines of C by test 142 Bytes Show Edit Expand
1
2
3
4
5
6
NSNumber *max = nil;
for (NSNumber *number in numbers) {
  if (!max || [number compare:max] == NSOrderedDescending) {
    max = number;
  }
}
Hello 1 line of Delphi by murphy 6 Bytes Show Edit Expand
1
World!

Page 213, 10 entries