mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-04 13:42:48 +00:00
16 lines
166 B
Java
16 lines
166 B
Java
class StackValue {
|
|
|
|
StackValue(double x)
|
|
{
|
|
d = x;
|
|
}
|
|
|
|
StackValue(String x)
|
|
{
|
|
id = x;
|
|
}
|
|
|
|
double d;
|
|
String id;
|
|
|
|
} |