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
- 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
global _start section .data buffer dw 0h section .text _start: mov ecx, buffer
...
-
1 2 3 4 5 6 7 8 9
global _start section .text _start: mov eax, 0 mov ebx, 0 inc eax
...
-
1 2 3 4 5 6 7 8 9
global _start section .text _start: mov eax, 0 mov ebx, 0 inc ebx
...
-
1 2 3 4 5 6 7
mov eax, 0 mov ecx, 0 inc eax, 1 add eax, ecx inc eax, 1
-
1 2 3 4 5 6 7
mov eax, 0 mov ecx, 0 inc eax add eax, ecx inc eax
-
1
72
-
1
74 65 75 84 65 77 72 85 77 79 82 69 75 63
-
1
72 69 74 68 65 82 73 85 83 90 85
-
1 2 3 4 5 6 7 8
global _start section .data section .text _start: je exit
...
-
1 2 3
72 69 74 68 65 82 73 85 83 90 85 74 65 75 84 65 77 72 85 77 79 82 69 75 63 41664
-
1
mov R0,#10
-
1 2 3 4 5 6 7 8 9
global _start section .data _str db "Odczytano bledna liczbe! $" _ptrOut dw 0 section .text _start: ;mov _ptrOut, _str
...
-
1 2 3 4 5 6 7 8 9
global _start section .data section .text _start: call read call write
...
-
1 2 3 4 5 6 7 8 9
global _start section .data section .text _start: call read call write
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> #include <cstdio> using namespace std; int main() { int p,w,wynik; cin >> p >> w;
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> #include <cstdio> using namespace std; int main() { int p,w,wynik; cin>>p>>w;
...
-
1 2 3 4 5 6 7 8
global _start section .data section .text _start: je exit
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> #include <cstdio> using namespace std; int main() { int p,w,wynik; cin>>p>>w;
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> #include <cstdio> using namespace std; int main() { int p,w; cin>>p>>w;
...
-
1 2 3 4 5 6 7 8 9
global _start section .data buffer dw 0h section .text _start: mov ecx, buffer
...
-
1 2 3 4 5 6
_asm { mov dx, 378h mov al, 1 out dx, al }
-
1 2 3 4 5 6 7 8 9
.section .data InitialString DB 100 DUP(?) .section .text .global _start _start: mov si, 0 ReadString:
...
-
1 2 3 4 5 6 7 8 9
.section .text: .global _start _start: mov si, 0 ReadString: MOV AH, 01 INT 21H
...
-
1 2 3 4 5 6 7 8 9
# Built output for (null) # Generated at (null) # Using (null) configuration, (null) architecture for (null) target of (null) project [BITS 16] [ORG 0x0000] mov ax, 0x07c0
...
-
1 2 3 4 5 6 7 8 9
org 100h section .data bladliczby_str db "Odczytano bledna liczbe! $" bladznaku_str db "Odczytano bledny znak! $" bladzapisu_str db "Blad zapisu! $" bladodczytu_str db "Blad odczytu! $" plikIn db "DataIn.csv", 0
...
-
1
mov eax,1
-
1 2
popad retn
-
1 2 3 4 5 6 7 8 9
.data x: .long 0 s: .string "%d\n\0" .text .global main main: # int main()
...
-
1 2 3 4 5 6 7 8
start .model tiny #pop all al, ar al =6
-
1 2 3 4 5 6 7 8 9
global _start section .data buffer dw 0h section .text _start: mov ecx, buffer
...


