I don't think this is obfuscated code, but here goes a japh in the MIPS assembly language:

.data japh: .asciiz "Just another Perl hacker\n" .text .globl main main: li $v0, 4 la $a0, japh syscall li $v0, 10 syscall

Replies are listed 'Best First'.
Re: MIPS Japh
by bart (Canon) on Apr 26, 2004 at 11:34 UTC
    Now if somebody were to write Inline::ASM::MIPS, and you'd use it for this, it might even belong on a Perl forum.