Neophyte Software
Making programming easier
10 use full demo
BUY NOW!
Who
Future
Forums & Support
EULA
Manual
Privacy
Press
Games & DVDs




Thank you,
for visiting the website of Neophyte software, home of our main product NuclearArsenault. We are going to suspend releasing a new version until, summer 2009. However it may be best if we wait til after the owner gets his second degree, as it requires a lot of travel; so much so he is panning to go overseas to london to avoid the travel! By sumer 2009 we should be adding support for linear algebra in real space; such as gaussians, cramers rule and therefore determinants, complex eigenvalues of real space, projections, etc. And hopefully the ability to manipulate bmp images within the program.


The code supports the following
  1. a few spelling errors and variants: use forum to suggest new variants
  2. create either java applications or java app-applets
  3. create object with html with ease
  4. give objects events almost like you would javascript
  5. limited dynamic casting
  6. a complex numbers class.
  7. supports new classes as long as they are inside the code
  8. hides the programmer from the javas often tedious procedures.
  9. tries devine some intent.
  10. Encapsulated Attributes of regular GUI objects do not require get and set
  11. more logical operators, and supports formats like 37
  12. supports multiple types of for loops.
  13. endfor, endif, endwhile, next, etc will compile into "}"
  14. setting the angle mode at start up, with a default of degrees.
  15. eliminate using math.this(Math.that()).
  16. "==" is eliminated thus ifs always test, but you cannot assign during a test.
  17. build chat programs with ease.
  18. change your painting coordinate system and anglemode
  19. access databases with ease, minimum 2 lines.
  20. download webpages into strings, with one line of code.
  21. option to allow your end users to drag widgets, of your choice, where they like.
  22. and more


//multithreaded chat server with no administrative task or authentication.

func main() {
String users[100];
<socketserver port=5000 max=100 name=myserver onconnect={myserver.send("hello", id);} onmessage={if (message.startswith("ID")) {users[id]=message.substring(2);myserver.sendinv("user:"+users[id]+" has logged in",id);}else{myserver.sendinv(users[id]+"says>"+message, id);}print(users[id]+"says>"+message);} onclose={myserver.sendinv(users[id]+" has logged off.",id);}>
myserver.start
}