1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-23 10:08:00 +02:00
Beef/IDE/mintest/src/main2.bf

25 lines
251 B
Beef
Raw Normal View History

2019-11-27 08:02:15 -08:00
using System;
#define SMz
#if SM
typealias int_test = int32;
#else
typealias int_test = int64;
#endif
2019-11-27 08:02:15 -08:00
struct Floof
{
public static int32 Hey()
{
2019-11-27 08:02:15 -08:00
Result<int> res = 123;
switch (res)
{
case .Ok(let val):
default:
}
return 123;
}
}