aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/scalam/m/MatlabInterpreter.scala
blob: 94cd14896b50dd4b4cccfc5c738cd43e711b2e32 (plain) (blame)
1
2
3
4
5
6
7
8
9
package scalam.m

import scalax.file.Path

class MatlabInterpreter(pwd: Path = Path(".")) extends Interpreter("matlab -nosplash -nodesktop", pwd) {
  
  def evaluate(statement: ast.Statement) = write(statement.m)
  
}