prep 0.1.2+1 copy "prep: ^0.1.2+1" to clipboard
prep: ^0.1.2+1 copied to clipboard

discontinued
outdated

Inspired by the C preprocessor, this package helps you manage your project with unique source code expressions.

example/prep_example.dart

// ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
//
// PREP EXAMPLE
//
// <#Author = Robert Mollentze>
// <#Email = robmllze@gmail.com>
// <#Date = 8/27/2021>
//
// See LICENSE file
//
// ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓

import 'package:prep/prep.dart';

// ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

void main() {
  // Process source files as per prep.yaml.
  prep();
  print("Follow me on Instagram " + "<#Instagram = @robmllze>".value);
  print("This file is " + "<#f=prep_example.dart>".value);
  print("This line is number " + "<#l=24>".value);
  print("The time now is " + "<#t=13:08>".value);
  print("This package is " + "<#Package = prep>".value);
  print("The package version is " + "<#Version = 0.1.2+1>".value);
  print("Let's print the USERNAME environment variable: " +
      "<#ENV USERNAME = r0bm0>".value);
}

// ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

/*
  OUTPUT:
  
  Follow me on Instagram @robmllze
  This file is prep_example.dart
  This line is number 24
  The time now is 13:07
  This package is prep
  The package version is 0.1.2+1
  Let's print the USERNAME environment variable: guest

 */
5
likes
0
pub points
0%
popularity

Publisher

unverified uploader

Inspired by the C preprocessor, this package helps you manage your project with unique source code expressions.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

meta, yaml

More

Packages that depend on prep