mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-19 08:30:25 +02:00
13 lines
199 B
Beef
13 lines
199 B
Beef
![]() |
using System;
|
||
|
|
||
|
namespace SysMSVCRT
|
||
|
{
|
||
|
class Program
|
||
|
{
|
||
|
public static int Main(String[] args)
|
||
|
{
|
||
|
return int.Parse(args[0]).GetValueOrDefault() + int.Parse(args[1]).GetValueOrDefault();
|
||
|
}
|
||
|
}
|
||
|
}
|