
Application->ShowException(Exception('Only wimps use basic, write in C'))

.maxstack 4
IL_0000: ldstr "GO FUCK YOURSELF"
IL_0005: ldstr "YARRRR!"
IL_000a: ldc.i4.0
IL_000b: ldc.i4.s 16
IL_000d: call valuetype [System.Windows.Forms]System.Windows.Forms.DialogResult [System.Windows.Forms]System.Windows.Forms.MessageBox::Show(string,
string,
valuetype [System.Windows.Forms]System.Windows.Forms.MessageBoxButtons,
valuetype [System.Windows.Forms]System.Windows.Forms.MessageBoxIcon)
IL_0012: pop
IL_0013: ret

Bonk, mostly because I created it when I was bored one evening.
( ,
Mon 8 Sep 2003, 14:33,
archived)

and I'll write a Bonk.NET compiler for you. Should be a good excuse to get low down and dirty with IL bytecodes.
No, Really !
( ,
Mon 8 Sep 2003, 14:35,
archived)
No, Really !

the lha archive, on that site.
Right click where it says click, and download it.
( ,
Mon 8 Sep 2003, 14:39,
archived)
Right click where it says click, and download it.

the lha extension.
Yeah you're right. it's rubbish. but I might do it anyway for no particular reason.
( ,
Mon 8 Sep 2003, 14:43,
archived)
Yeah you're right. it's rubbish. but I might do it anyway for no particular reason.

.data
MsgBoxCaption db "Stop!",0
MsgBoxText db "Because this is far too geeky",0
.code
start:
invoke MessageBox, NULL, addr MsgBoxText, addr MsgBoxCaption, MB_OK
invoke ExitProcess, NULL
end start
( ,
Mon 8 Sep 2003, 14:30,
archived)
MsgBoxCaption db "Stop!",0
MsgBoxText db "Because this is far too geeky",0
.code
start:
invoke MessageBox, NULL, addr MsgBoxText, addr MsgBoxCaption, MB_OK
invoke ExitProcess, NULL
end start