I have many values like 0.6584871727288045313850172023417636020375045372547107712468813403 that come from Maple and I would like to avoid doing this by copy/paste for each one: Float128(parse(BigFloat,"0.6584871727288045313850172023417636020375045372547107712468813403"))
I tried writing a macro that would put quotes around the value and then affix the rest -- without good result. julia>@fromMaple 0.6584871727288045313850172023417636020375045372547107712468813403 Float128(parse(BigFloat,"0.6584871727288045313850172023417636020375045372547107712468813403")) The REPL converts the unenquoted value to a Float64 before I get at it. Help is appreciated.
