Hello im trying to compile my simple code of haxe , and it still an error with Meal.hx:1: characters 0-7 is missing ;
i dont know where the error is, here's the code:
Meal.hx
package MyFridge;
class Meal
{
public var name : String;
public function new(f_name : String)
{
this.name = f_name;
}
}