﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
4261	No viable alternative near token: =	Widuramina@…	somebody	"Hi, I an new to OpenModelica and I am just trying to solve 3 basic simultaneous equations. But it gives me the error as ""No viable alternative near token: =""

Does anybody know what is the issue..??

package test

  model sim_test

    mod_test aaa;

    Real _x; //output
    Real _y; //output
    Real _z; //output

    //outputs
    _x = aaa.x;
    _y = aaa.y;
    _z = aaa.z;

  end sim_test;

  model mod_test

    output Real x;
    output Real y;
    output Real z;

  equation

    x + y + z = 6;
    2*x - y - z = 0;
    5*y + 2*z = 11;

  end mod_test;
end test;"	task	closed	high	Future	*unknown*		invalid		
