-3
mob/verb/test(N as num)

What language is this code from?

Ryan M
  • 18,333
  • 31
  • 67
  • 74

2 Answers2

11

That looks to be the 'Dream Maker' programming language from BYOND, a gaming service: http://www.byond.com/docs/notes/285.html. It uses a piece of software, also known as Dream Maker, to create its games. http://en.allexperts.com/e/b/by/byond.htm

Specifically, the mob/verb in this example refers to creating a verb for a mob (an abbreviation for creature/NPC in games), and calling it test.

Ryan M
  • 18,333
  • 31
  • 67
  • 74
Brisbe
  • 1,588
  • 2
  • 20
  • 42
0

This is the Dream Maker (DM) language. See:

The latter page, entitled "Dream Maker 4.0" has examples containing the exact same code snippet shown in the question.

Cody Gray - on strike
  • 239,200
  • 50
  • 490
  • 574
Jon Ursenbach
  • 2,952
  • 5
  • 20
  • 22