7 lines
185 B
Text
7 lines
185 B
Text
XIncludeFile "decimal.pbi"
|
|
|
|
Define.Decimal *a, *b
|
|
*a=PowerDecimal(IntegerToDecimal(2),IntegerToDecimal(64))
|
|
*b=TimesDecimal(*a,*a,#NoDecimal)
|
|
|
|
Print("2^64*2^64 = "+DecimalToString(*b))
|