Skip to content

Instantly share code, notes, and snippets.

// access flags 0x51
public final bridge contains(Ljava/lang/Object;)Z
L0
LINENUMBER 3 L0
ALOAD 1
INSTANCEOF java/lang/String
IFEQ L1
GOTO L2
L1
ICONST_0
@joyrexus
joyrexus / README.md
Last active February 24, 2024 15:16
collapsible markdown

collapsible markdown?

CLICK ME

yes, even hidden code blocks!

print("hello world!")
@ePaul
ePaul / ackermann2.ceylon
Last active December 26, 2016 21:14
Ceylon Web Runner: Ackermann iterative implementation in Ceylon
import ceylon.collection {
Stack,
ArrayList
}
Integer ackermann2(Integer n0, Integer m0) {
Stack<Integer> stack = ArrayList<Integer>();
stack.push(n0);
stack.push(m0);
while (true) {