view classpath.sh @ 1261:198d6af7330a

rename Luan.to_table to Table.java_to_table_shallow and Luan.to_luan to Table.java_to_table_deep
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 24 Sep 2018 13:09:16 -0600
parents f2eb8295033f
children 1437fb1f0956
line wrap: on
line source

LUAN_HOME=`pwd`

CLASSPATH=$LUAN_HOME/src

for file in $LUAN_HOME/lib/*; do
	CLASSPATH=$CLASSPATH:$file;
done

export CLASSPATH