Este sítio funciona melhor com JavaScript.
Página inicial
Explorar
Ajuda
Iniciar sessão
Archivist
/
SuperBASIC
Vigiar
1
Marcar como favorito
0
Derivar
0
Código
Questões
23
Pedidos de integração
0
Lançamentos
0
Wiki
Trabalho
Ver a proveniência
Simplify the implemented functions
master
Ludovic 'Archivist' Lagouardette
há 3 anos
ascendente
a7d410dfe5
cometimento
c62a19a605
2 ficheiros alterados
com
2 adições
e
2 eliminações
Visualização em 2 colunas
Opções das diferenças
Mostrar estatísticas
Descarregar ficheiro patch
Descarregar ficheiro diff
+1
-1
Functions/Multiply.cs
+1
-1
Functions/Print.cs
+ 1
- 1
Functions/Multiply.cs
Ver ficheiro
@ -8,7 +8,7 @@ namespace SuperBASIC.Functions
{
float
IFunction
.
Apply
(
List
<
BasicNumber
>
arguments
)
{
return
arguments
[
0
]
.
GetValue
(
)
*
arguments
[
1
]
.
GetValue
(
)
;
return
arguments
[
0
]
*
arguments
[
1
]
;
}
}
}
+ 1
- 1
Functions/Print.cs
Ver ficheiro
@ -8,7 +8,7 @@ namespace SuperBASIC.Functions
{
float
IFunction
.
Apply
(
List
<
BasicNumber
>
arguments
)
{
Console
.
WriteLine
(
arguments
[
0
]
.
GetValue
(
)
)
;
Console
.
WriteLine
(
arguments
[
0
]
)
;
return
0f
;
}
}
Escrever
Pré-visualizar
Carregando…
Cancelar
Guardar