This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local standard = {} | |
for k in pairs(package.loaded) do | |
standard[k] = true | |
end | |
function R() | |
local loadThese = {} | |
-- Unload all loaded packages... | |
for k in pairs(package.loaded) do |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Foobar { | |
public interface ISomething { | |
void DoItNow(); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public async Task<IViewModel> GoBackAsync() { | |
await ((NavigationPage)this.MainPage).Navigation.PopAsync(); | |
var newPage = ((NavigationPage)this.MainPage).CurrentPage; | |
return (IViewModel)newPage.BindingContext; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DefInt A-R | |
Function V(x) | |
On Error Goto e | |
For Z=1 To Len(x) | |
Select Case Mid(x, Z, 1) | |
Case"i":A=A+1 | |
Case"d":A=A-1 | |
Case"s":A=A^2 | |
Case"p":V=V &A | |
Case"P":V=V &Chr(A) |