Then, why don't you go help with Filo? He is working in C#. He's going to make a Emerald Programming Environment.
Offline
You know, I just got an idea.
You know how to define functions in python, right?
def my_function(): <--------------
What if we do the same thing in Emerald?
ask("Hi!",my_var) print('Hello World') var('new', 'myvar') var('del', 'myvar') var('mutate', 'myvar', '+1') var('change', 'myvar', '104')
In var(), the first parameter is the actions, second the variable, and third the change.
How about that?
Last edited by Greatdane (2009-10-21 11:08:53)
Offline
Hmm... That might work a bit, we'll need to get Floppy to check this.
Offline
ThePiGuy wrote:
Oh, sorry. But I do have C#!
I've sort of started making my own version...
I really like this idea...
I know! It's a good idea, right? I wish they just didn't have to kill so many emeralds to make it! (Stupid joke, modified family guy quote)
I would love to see your new version.
And, once again, you can still download Python from http://www.python.org/
However, helping Filo with Diamond in C# works, too.
Offline
It currently only has 3 commands.. but I'll add more.
Displays a message box that says "(your code here)": MSG (your code here) _______________________ Makes a number variable. VINT (name) _______________________ Makes a string variable. VSTR (name)
and that's it. After a LONG time(1.5 hours) of debugging, it does that!
P.S. I'm only 9.
Last edited by ThePiGuy (2009-10-21 22:06:37)
Offline
9 for a C# programmer, nice, I'm 12, I have just barely gotten a C# Environment, so I could work on some stuff to.
Offline
Magnie wrote:
I'm 12
I'm 12, too. Thanks to floppy_gunk, though, I can create basic Tkinter programs.
Offline
I know, he's awesome!
Offline
9? Wow. I'm either older or younger than Magnie and you. I was just wondering, how do you use Tkinter? I've never seen such a module before. I've been working with PythonCard and EasyGui. Any of you know those?
Offline
Offline
Offline
Greatdane wrote:
You know, I just got an idea.
You know how to define functions in python, right?Code:
def my_function(): <--------------What if we do the same thing in Emerald?
Code:
ask("Hi!",my_var) print('Hello World') var('new', 'myvar') var('del', 'myvar') var('mutate', 'myvar', '+1') var('change', 'myvar', '104')In var(), the first parameter is the actions, second the variable, and third the change.
How about that?
I like that idea!!!
P.s. hi guys, im back.
Offline
Offline
how do I program in c# without visual studio?
can I just create a .m(?) file, then use a compiler?(?)
*waits for filo*
Last edited by gershmer (2009-10-24 16:38:19)
Offline
Gersh, all you need is a compiler, I don't have Visual C#, I just use Mono.
Offline
i have visual J# and VB, and i think somewhere, i have visual C++... well, if you want me to help, im free untill wedensday, october holidays.
Offline
Can anyone give me a good c# compiler?
Offline
wow... but i geuss there are a few ways around that Pi, unless you've alreayd done it, Make a Libary, i suggest Note Pad, and have it contain all the code you need, then you just need to copy-paste it!
Offline
I have Visual Studio 2008, that works fine.
I usually type one to many words, leave one out, spell incorrectly, don't understand the error, or (Most common) FORGET THE SEMICOLON AT THE END OF THE LINE;
Offline
lol, well, anyway... what did i miss when i was on holiday?
Offline
gershmer wrote:
how do I program in c# without visual studio?
can I just create a .m(?) file, then use a compiler?(?)
*waits for filo*
Your wait is over, Gershmer.
Yes, you can program w/out visual studio, you just need a compiler for it (usually found on MS website; filename: csc.exe; requirements: .NET), but it's hellishly difficult to do WinForms in it (WinForms are just windows-based programs).
And, usual compiler call generated by VisualStudio is over 200 chars long.
And, building an application is not only one compiler call - it's basically about 4 different tools calls. So yes, you can program without any IDE, but it's really difficult and timewasting. If you don't want to/can't use VisualStudio, there are other IDEs
Try this one
Offline