New stuff - better handle on breaks etc, started try/catch
git-svn-id: svn://10.0.0.236/trunk@32129 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -3,11 +3,18 @@ class StackValue {
|
||||
StackValue(double x)
|
||||
{
|
||||
d = x;
|
||||
id = "";
|
||||
}
|
||||
|
||||
StackValue(String x)
|
||||
{
|
||||
id = x;
|
||||
d = 0;
|
||||
}
|
||||
|
||||
public String toString()
|
||||
{
|
||||
return "StackValue, id = " + id + ", d = " + d;
|
||||
}
|
||||
|
||||
double d;
|
||||
|
||||
Reference in New Issue
Block a user