a4f9b2aed3
Scala is a general purpose programming language designed to express common programming patterns in a concise, elegant, and type-safe way. It smoothly integrates features of object-oriented and functional languages, enabling Java and other programmers to be more productive. Code sizes are typically reduced by a factor of two to three when compared to an equivalent Java application. ok sthen@
8 lines
170 B
Bash
8 lines
170 B
Bash
#!/bin/ksh
|
|
#
|
|
# $OpenBSD: scalap,v 1.1.1.1 2011/08/28 16:57:23 jasper Exp $
|
|
|
|
JAVA_CMD=$(javaPathHelper -c scala)
|
|
|
|
JAVACMD=${JAVA_CMD} ${TRUEPREFIX}/scala/bin/scalap "$@"
|