Files
funnygame/asmrigs/tests/005.b
2026-01-16 13:32:36 +02:00

10 lines
58 B
Brainfuck

add(a,b)
{
return a + b;
}
main()
{
return add(2,3);
}