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.

15 wiersze
255 B

using System;
using System.Collections.Generic;
using System.Text;
namespace SuperBASIC.Functions
{
public class Print : IFunction
{
float IFunction.Apply(List<BasicNumber> arguments)
{
Console.WriteLine(arguments[0]);
return 0f;
}
}
}