Skip to content

Instantly share code, notes, and snippets.

View worksofliam's full-sized avatar
🤝
merging PRs

LJ worksofliam

🤝
merging PRs
View GitHub Profile
class expRange
{
public int _low;
public int _high;
public expRange(int low, int high)
{
_low = low;
_high = high;
}

php2rpg

Guide showing you PHP and RPG differences

  • RPG is strongly typed.
  • RPG indexes start at 1, where PHP starts at 0.
  • Variables in PHP start with a Dollar sign. ($)

Typing