Bu web sitesi JavaScript ile daha iyi çalışır.
Ana Sayfa
Keşfet
Yardım
Giriş Yap
Archivist
/
SuperBASIC
İzle
1
Yıldızla
0
Çatalla
0
Kod
Konular
23
Değişiklik İstekleri
0
Sürümler
0
Wiki
Aktivite
Kaynağa Gözat
Simplify the implemented functions
master
Ludovic 'Archivist' Lagouardette
3 yıl önce
ebeveyn
a7d410dfe5
işleme
c62a19a605
2 değiştirilmiş dosya
ile
2 ekleme
ve
2 silme
Görünümü Böl
Diff Seçenekleri
İstatistikleri Göster
Yama Dosyasını İndir
Diff Dosyasını İndir
+1
-1
Functions/Multiply.cs
+1
-1
Functions/Print.cs
+ 1
- 1
Functions/Multiply.cs
Dosyayı Görüntüle
@ -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
Dosyayı Görüntüle
@ -8,7 +8,7 @@ namespace SuperBASIC.Functions
{
float
IFunction
.
Apply
(
List
<
BasicNumber
>
arguments
)
{
Console
.
WriteLine
(
arguments
[
0
]
.
GetValue
(
)
)
;
Console
.
WriteLine
(
arguments
[
0
]
)
;
return
0f
;
}
}
Yaz
Önizleme
Yükleniyor…
İptal
Kaydet