added basic beef project
This commit is contained in:
parent
45bc4290f1
commit
fccdcb3f97
4 changed files with 22 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,5 +1,6 @@
|
|||
# ---> Beef
|
||||
build/
|
||||
recovery/
|
||||
deps/
|
||||
BeefSpace_User.toml
|
||||
|
||||
|
|
5
BeefProj.toml
Normal file
5
BeefProj.toml
Normal file
|
@ -0,0 +1,5 @@
|
|||
FileVersion = 1
|
||||
|
||||
[Project]
|
||||
Name = "pkkg"
|
||||
StartupObject = "pkkg.Program"
|
5
BeefSpace.toml
Normal file
5
BeefSpace.toml
Normal file
|
@ -0,0 +1,5 @@
|
|||
FileVersion = 1
|
||||
Projects = {pkkg = {Path = "."}}
|
||||
|
||||
[Workspace]
|
||||
StartupProject = "pkkg"
|
11
src/Program.bf
Normal file
11
src/Program.bf
Normal file
|
@ -0,0 +1,11 @@
|
|||
namespace pkkg;
|
||||
|
||||
using System;
|
||||
|
||||
class Program
|
||||
{
|
||||
public static void Main(String[] pArgs)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
Reference in a new issue