This is my awesome c code:
#include <stdio.h>
int main(void) {
return 0;
}This is my awesome c code:
#include <stdio.h>
int main(void) {
return 0;
}This document describes the C# language features currently featured in the March CTP. There's also discussion of a few of the VB features in the preview, where those are intended to be eventually implemented in C# as well.
Note that we have more language features planned that are not yet implemented. So look out for more to come in future CTPs and eventually a shipping version of C#.
| diff --git a/Bridge/Resources/bridge.js b/Bridge/Resources/bridge.js | |
| index 3d92710..0da0eb1 100755 | |
| --- a/Bridge/Resources/bridge.js | |
| +++ b/Bridge/Resources/bridge.js | |
| @@ -1,4 +1,4 @@ | |
| -/* | |
| +/* | |
| * @version : 1.8.0 - Bridge.NET | |
| * @author : Object.NET, Inc. http://bridge.net/ | |
| * @date : 2015-08-17 |
| all: example | |
| example: example.c | |
| gcc example.c -lotr -o example | |
| .PHONY: clean | |
| clean: | |
| rm -f example |
| #include <linux/module.h> | |
| #include <linux/kernel.h> | |
| #include <linux/netfilter_ipv4.h> | |
| #include <linux/skbuff.h> | |
| #include <linux/udp.h> | |
| #include <linux/ip.h> | |
| /* This function to be called by hook. */ | |
| static unsigned int | |
| hook_func(unsigned int hooknum, |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <unistd.h> | |
| #include <assert.h> | |
| #include <pthread.h> | |
| #include <fcntl.h> | |
| #include <sys/types.h> | |
| #include <sys/stat.h> | |
| #include <linux/unistd.h> |
| uuid: main.zig | |
| zig build-exe --strip --single-threaded main.zig | |
| mv main uuid | |
| run: uuid | |
| ./uuid |