Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
Archivist
/
SuperBASIC
Segui
1
Vota
0
Forka
0
Codice
Problemi
23
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
Simplify the implemented functions
master
Ludovic 'Archivist' Lagouardette
3 anni fa
parent
a7d410dfe5
commit
c62a19a605
2 ha cambiato i file
con
2 aggiunte
e
2 eliminazioni
Visualizzazione separata
Opzioni Diff
Mostra statistiche
Scarica il file Patch
Scarica il file Diff
+1
-1
Functions/Multiply.cs
+1
-1
Functions/Print.cs
+ 1
- 1
Functions/Multiply.cs
Vedi File
@ -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
Vedi File
@ -8,7 +8,7 @@ namespace SuperBASIC.Functions
{
float
IFunction
.
Apply
(
List
<
BasicNumber
>
arguments
)
{
Console
.
WriteLine
(
arguments
[
0
]
.
GetValue
(
)
)
;
Console
.
WriteLine
(
arguments
[
0
]
)
;
return
0f
;
}
}
Scrivi
Anteprima
Caricamento…
Annulla
Salva