12 lines
203 B
Text
12 lines
203 B
Text
if FrinkVersion[] < "2024-01-01"
|
|
{
|
|
println["Version of Frink is too old."]
|
|
exit[]
|
|
}
|
|
|
|
if isVariableDefined["bloop"]
|
|
{
|
|
func = getFunction["abs",1]
|
|
if func != undef
|
|
println[func[bloop]]
|
|
}
|