Settings

Theme

The Cscript Style Guide – CScript is the standard C

github.com

25 points by domenukk 3 months ago · 12 comments

Reader

eqvinox 3 months ago

Very high quality shitposting. Approved.

irishcoffee 3 months ago

This is interesting, but I wouldn't say it is valid C. main() doesn't know about greet(auto s) and wouldn't be able to call it in valid C89, right?

gschizas 3 months ago

Given that CScript is the name of the "Console Based Script Host" for Windows, that can run JScript (Microsoft's old variant of JavaScript) and VBScript, and supposedly other pluggable scripting languages (I've never seen one in the wild), calling this "Cscript" is not a good idea.

krylon 3 months ago

> 0[str] is valid and asserts dominance.

At this point I came dangerously close to spewing water all over my keyboard. :D

leumassuehtam 3 months ago

It looks like the B programming language.

TZubiri 3 months ago

To compile CScript to C:

apt install gcc-dev

cat hello.cs > hello.c

gcc hello.c

  • eqvinox 3 months ago

    Nope… you need to follow the instructions:

      gcc -std=gnu89 -m32 -fno-builtin
    
    because GCC defaults to ISO C23 these days, and that will not work, and neither will anything where int and a pointer aren't the same size :)

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection