Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 926 Bytes

README.md

File metadata and controls

37 lines (27 loc) · 926 Bytes

nim-extensions

Extensions for the nim programming language.

These extensions aim to improve the usability of nim in practical applications.

Extensions so far include:

OOP macro

This module was modified from the OOP section on the excellent website http://nim-by-example.github.io/

usage:

import oop_macro
class BaseObject: # inherits from RootObj
  # attributes/properties
  var
    x: int
    y: float
    
  method override_me(argx: float): int=
    result = int(argx) + self.x
    
class ClassName of BaseObject:
    method method_name(arg1: int, arg2: float=0.3): float=
      ## do stuff here
      result = arg2
      
    method override_me(argx: float): int=
      result = int(self.y) + int(argx) + self.x

There's also an example in the code that demonstrates the inheritance that can be run by executing:

nim c -r oop_macro.nim