PC Logo Wiki
Advertisement

Syntax

number * number

  • number number

(* number number number ...)

Explanation

  • outputs the product of the two inputs. * can also be used as a prefix operation with two inputs, like PRODUCT.

Examples

? 3 * 8

Result: 24

? -3 * 8

Result: -24

? .3 * 8

Result: 2.40

? * 2 6

Result: 12

? (* 2 3 4)

Result: 24

?

Advertisement