Making a DLL
3 posters
Page 1 of 1
Making a DLL
I am thinking about creating a simple DLL, or scripts for GML to make it have more powerful functions. For example, in most languages, when you read a text file you have a 'split' function for seperating the text around a symbol.
For example here it is used in PERL:
The text says:
Hi!
Having a good day?
Bye!
So you can see it is very useful, so that is one thing i would incorporate into it. So whilst i am at, anyone got any ideas? (Easy stuff, i can't be bothered making a big DLL)
For example here it is used in PERL:
- Code:
$text = "Hi!.Having a good day?.Bye!";
@lines = split(/\./, $text);
print "Content-type:text/html\n\n";
print "The text says:<br/>";
foreach $line (@lines)
{
print "$line<br/><br/>";
}
The text says:
Hi!
Having a good day?
Bye!
So you can see it is very useful, so that is one thing i would incorporate into it. So whilst i am at, anyone got any ideas? (Easy stuff, i can't be bothered making a big DLL)
Re: Making a DLL
look easy.
Hay I might try it some time.
Hay I might try it some time.
DT-170x- Junior Member
-
Number of posts : 109
Age : 35
Location : Be a physic to know that question
Warning :
Reputation :
Registration date : 2008-08-22
Re: Making a DLL
Right, i was just using PERL as an example of the Split function. I would actually be writing it in C++
Similar topics
» About to quit OS making
» Making GML Easier.
» Need help making a JScript Game?
» Making Puzzle Games (Tutorial)
» How bout we have a music making competition
» Making GML Easier.
» Need help making a JScript Game?
» Making Puzzle Games (Tutorial)
» How bout we have a music making competition
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum
|
|