Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/script_engine/src/lib/script_engine/luna/account.lua @ 7820

Last change on this file since 7820 was 7820, checked in by snellen, 18 years ago

moved old files

  • Property svn:executable set to *
File size: 227 bytes
Line 
1--
2-- Luna Account example
3--
4
5print("testoutput from lua")
6local a = Account{balance=100}
7a:withdraw(25.00)
8a:deposit(50.00)
9print("Account balance = $"..a:balance())
10
11local e = Euclid()
12print("Euclid gcd = "..e:gcd(10000,2))
Note: See TracBrowser for help on using the repository browser.