Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

14 wiersze
240 B

using System;
using System.Collections.Generic;
using System.Text;
namespace SuperBASIC.Functions
{
class Multiply : IFunction
{
float IFunction.Apply(List<BasicNumber> arguments)
{
return arguments[0] * arguments[1];
}
}
}