added basic beef project

This commit is contained in:
Booklordofthedings 2024-09-04 19:17:32 +02:00
parent 45bc4290f1
commit fccdcb3f97
4 changed files with 22 additions and 0 deletions

1
.gitignore vendored
View file

@ -1,5 +1,6 @@
# ---> Beef
build/
recovery/
deps/
BeefSpace_User.toml

5
BeefProj.toml Normal file
View file

@ -0,0 +1,5 @@
FileVersion = 1
[Project]
Name = "pkkg"
StartupObject = "pkkg.Program"

5
BeefSpace.toml Normal file
View file

@ -0,0 +1,5 @@
FileVersion = 1
Projects = {pkkg = {Path = "."}}
[Workspace]
StartupProject = "pkkg"

11
src/Program.bf Normal file
View file

@ -0,0 +1,11 @@
namespace pkkg;
using System;
class Program
{
public static void Main(String[] pArgs)
{
}
}