Skip to content
Snippets Groups Projects
BasicError.grading.amy 122 B
Newer Older
object BasicError

	def throwError(msg: String): Unit = {
		error(msg)
	}

	throwError("basic error test")
end BasicError