This file contains hidden or 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
    
  
  
    
  | execScript: function [scr][ | |
| null | |
| do scr | |
| cc: to :string unstack 1 | |
| eval ~{showResult("|cc|")} | |
| ] | |
| webview ~{!html | |
| <!DOCTYPE html> | |
| <html class="has-navbar-fixed-top" lang="en"> | 
  
    
      This file contains hidden or 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
    
  
  
    
  | ### Keybase proof | |
| I hereby claim: | |
| * I am eloitor on github. | |
| * I am eloitor (https://keybase.io/eloitor) on keybase. | |
| * I have a public key ASAkuefewRbtlh-K54dRKQqJ5C9RTvoFrvhxN7BgkZwXPAo | |
| To claim this, I am signing this object: | 
  
    
      This file contains hidden or 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
    
  
  
    
  | # Template file for 'sage' | |
| pkgname=sage | |
| version=9.3 | |
| revision=1 | |
| #archs="i686 x86_64" | |
| #wrksrc= | |
| #create_wrksrc=yes | |
| build_style=gnu-configure | |
| #configure_args="" | |
| #make_build_args="" | 
  
    
      This file contains hidden or 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
    
  
  
    
  | # Template file for 'lean' | |
| pkgname=lean | |
| version=3.4.2 | |
| revision=1 | |
| build_wrksrc=src | |
| build_style=cmake | |
| # make_cmd=ninja | |
| hostmakedepends="cmake gmp" | |
| makedepends="gmp-devel" | |
| depends="gmp" | 
  
    
      This file contains hidden or 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
    
  
  
    
  | #define _XOPEN_SOURCE 700 | |
| #include <signal.h> | |
| #include <unistd.h> | |
| int main() | |
| { | |
| sigset_t set; | |
| int status; | |
| if (getpid() != 1) return 1; | 
  
    
      This file contains hidden or 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
    
  
  
    
  | import Base# | |
| T Integer | |
| | integer(pos: Nat, neg: Nat) | |
| IntEquality(x: Integer, y: Integer): Type | |
| case x | |
| + y: Integer | |
| |integer => case y | |
| |integer => Equal(Nat, add(x.pos, y.neg), add(y.pos, x.neg)) | 
  
    
      This file contains hidden or 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
    
  
  
    
  | import Base# | |
| T Tape | |
| | tape(left: List(Number), current: Number, right: List(Number)) | |
| newTape: Tape | |
| tape(nil(_), 0, nil(_)) | |
| T Instruction | |
| | right |