本網站在啟用 JavaScript 的情況下可以運作的更好。
首頁
探索
說明
登入
Archivist
/
SuperBASIC
關注
1
收藏
0
複製
0
程式碼
問題
23
合併請求
0
版本發佈
0
Wiki
活動
瀏覽代碼
Simplify the implemented functions
master
Ludovic 'Archivist' Lagouardette
3 年之前
父節點
a7d410dfe5
當前提交
c62a19a605
共有
2 個檔案被更改
,包括
2 行新增
和
2 行删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
Functions/Multiply.cs
+1
-1
Functions/Print.cs
+ 1
- 1
Functions/Multiply.cs
查看文件
@ -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
查看文件
@ -8,7 +8,7 @@ namespace SuperBASIC.Functions
{
float
IFunction
.
Apply
(
List
<
BasicNumber
>
arguments
)
{
Console
.
WriteLine
(
arguments
[
0
]
.
GetValue
(
)
)
;
Console
.
WriteLine
(
arguments
[
0
]
)
;
return
0f
;
}
}
Write
Preview
Loading…
取消
儲存