frg 0.1.1

Compiled programming language with frogs!
Documentation
struct Person {
	str name,
	int age,
}

Person jog = {
	name: "jogua",
	age: 82,
}

str name = jog.name

int number = 32
float pi = 3.1
str message = "mmmnm i love frogs"
vec(int) numbers = [2, 3, 4, 5, 4]
map(str, int) team_scores = { "yellow": 2, "red": 5  }
set(int) passing_teams = { 2, 4, 5 }

void main = () {
	print(message + str(number))
}

void increment = (&int num) {
	*num += 1
}

int plus_one = (int num) {
	num + 1
}